1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Update pubsub.md

This commit is contained in:
Ginger Collison 2019-06-07 10:45:10 -05:00 committed by GitHub
parent f0ae6fb613
commit 41be48b5f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ digraph nats_pub_sub {
pub1 sub1 non_active pub1 sub1 non_active
} }
gnatsd [shape="box", label="NATS", width=8]; natsserver [shape="box", label="NATS", width=8];
sub2 [shape="box", label="SUB\ncom.msg.one"]; sub2 [shape="box", label="SUB\ncom.msg.one"];
sub3 [shape="box", label="SUB\ncom.msg.two"]; sub3 [shape="box", label="SUB\ncom.msg.two"];
@ -26,13 +26,13 @@ digraph nats_pub_sub {
sub2 sub3 sub4 sub2 sub3 sub4
} }
pub1 -> gnatsd [penwidth=2]; pub1 -> natsserver [penwidth=2];
gnatsd -> sub1 [penwidth=2]; natsserver -> sub1 [penwidth=2];
gnatsd -> non_active [style=dashed color=red arrowhead="none"]; natsserver -> non_active [style=dashed color=red arrowhead="none"];
gnatsd -> sub2 [penwidth=2]; natsserver -> sub2 [penwidth=2];
gnatsd -> sub3 [style=dashed color=red arrowhead="none"]; natsserver -> sub3 [style=dashed color=red arrowhead="none"];
gnatsd -> sub4 [penwidth=2]; natsserver -> sub4 [penwidth=2];
} }
</code></div> </code></div>