mongo-python-driver/doc/static/periodic-executor-refs.dot
2015-10-15 00:37:39 -04:00

18 lines
381 B
Plaintext

digraph "Monitor and PeriodicExecutor" {
// Strong references.
topology -> server
server -> monitor
monitor -> executor
executor -> "target()"
"target()" -> self_ref
thread -> "target()"
// Weak references
edge [style="dashed"];
self_ref -> monitor [curved=true]
monitor -> topology
executor -> thread
_EXECUTORS -> executor
}