diff --git a/developer/connecting/noecho.md b/developer/connecting/noecho.md index 1ba5767..73a73c3 100644 --- a/developer/connecting/noecho.md +++ b/developer/connecting/noecho.md @@ -4,32 +4,7 @@ By default a NATS connection will echo messages if the connection also has inter The NoEcho option can be useful in BUS patterns where all applications subscribe and publish to the same subject. Usually a publish represents a state change that the application already knows about, so in the case where the application publishes an update it does not need to process the update itself. -
-digraph {
- rankdir=LR;
- subgraph cluster_1 {
- shape=box;
- style="rounded";
- label = "Connection #1";
-
- publisher [shape=box, style="rounded", label="Publisher"];
- subscriber_1 [shape=box, style="rounded", label="Subscriber"];
- }
- subgraph cluster_2 {
- shape=box;
- style="rounded";
- label = "Connection #2";
-
- subscriber_2 [shape=box, style="rounded", label="Subscriber"];
- }
-
- subject [shape=circle, label="Subject"];
-
- publisher -> subject [label="msg"];
- subject -> subscriber_1 [label="echo'd msg", style="dashed"];
- subject -> subscriber_2 [label="msg"];
-}
-