Skip to content

Commit

Permalink
update graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Dunn authored and hashrocketeer committed Jul 23, 2012
1 parent fe44cda commit f20ba7b
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions connections.dot
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
digraph {
dispatcher [label="dispatcher | <pub> PUB | <rep> REP", shape=record];
worker [label="worker | <sub> SUB | <req> REQ", shape=record];
dispatcher:pub -> worker:sub [label=sepuku];
worker:req -> dispatcher:rep [label=results];
dispatcher:rep -> worker:req [label=test];
node [color=cornflowerblue];
subgraph {
node [shape=record, fontsize=10.0];
dispatcher [label="dispatcher | <sub> SUB | <rep> REP"];
worker [label="worker | <sub> SUB | <req> REQ | <push> PUSH"];
sink [label="sink | <pub> PUB | <pull> PULL"];
}
subgraph {
sink:pub -> dispatcher:sub [label=quit];
sink:pub -> worker:sub [label=quit];
worker:push -> sink:pull [label=results];
worker:req -> dispatcher:rep [label=ready];
dispatcher:rep -> worker:req [label=job];
}
}

0 comments on commit f20ba7b

Please sign in to comment.