mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 20:01:56 +00:00
16 lines
239 B
Text
16 lines
239 B
Text
|
digraph Overview {
|
||
|
node [shape = box]
|
||
|
|
||
|
{rank=same
|
||
|
T1 [label="Thread Cache"]
|
||
|
Tsep [label="...", shape=plaintext]
|
||
|
Tn [label="Thread Cache"]
|
||
|
T1 -> Tsep -> Tn [style=invis]
|
||
|
}
|
||
|
|
||
|
C [label="Central\nHeap"]
|
||
|
T1 -> C [dir=both]
|
||
|
Tn -> C [dir=both]
|
||
|
|
||
|
}
|