From 51fc56e3090645f7cedb242415e2d5361e1807e7 Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Fri, 4 Oct 2019 11:13:37 -0500 Subject: [PATCH] Update reqreply.md --- developer/concepts/reqreply.md | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/developer/concepts/reqreply.md b/developer/concepts/reqreply.md index f4edb73..7347af7 100644 --- a/developer/concepts/reqreply.md +++ b/developer/concepts/reqreply.md @@ -10,35 +10,6 @@ NATS allows multiple responders to run and form dynamic queue groups for transpa The power of NATS even allows multiple responses where the first response is utilized and the system efficiently discards the additional ones. This allows for a sophisticated pattern to have multiple responders reduce response latency and jitter. -
-digraph nats_request_reply { - rankdir=LR - - subgraph { - publisher [shape=box, style="rounded", label="Publisher"]; - } - - subgraph { - subject [shape=circle, label="Subject"]; - reply [shape=circle, label="Reply"]; - {rank = same subject reply} - } - - subgraph { - sub1 [shape=box, style="rounded", label="Subscriber"]; - sub2 [shape=box, style="rounded", label="Subscriber"]; - sub3 [shape=box, style="rounded", label="Subscriber"]; - } - - publisher -> subject [label="msg1"]; - publisher -> reply [style="invis", weight=2]; - reply -> sub3 [style="invis", weight=2]; - subject -> sub1 [label="msg1", style="dotted"]; - subject -> sub2 [label="msg1", style="dotted"]; - subject -> sub3 [label="msg1"]; - sub3 -> reply; - reply -> publisher; -} -
+![request/reply](/assets/images/reqrepl.svg) Try NATS request reply on your own, using a live server by walking through the [request/reply tutorial](../tutorials/reqreply.md).