diff --git a/developer/concepts/intro.md b/developer/concepts/intro.md index a4c1108..34fc1e1 100644 --- a/developer/concepts/intro.md +++ b/developer/concepts/intro.md @@ -4,19 +4,6 @@ NATS messaging enables the exchange of data that is segmented into messages amon NATS makes it easy for programs to communicate across different environments, languages, cloud providers and on-premise systems. Clients connect to the NATS system, usually via a single URL, and then subscribe or publish messages to subjects. With this simple design, NATS lets programs share common message-handling code, isolate resources and interdependencies, and scale by easily handling an increase in message volume, whether those are service requests or stream data. -
-graph nats {
- graph [splines=ortho, nodesep=1];
-
- publisher [shape="record", label="{Application 1 | NATS Publisher}"];
- application [shape="record", label="{Application 3 | }"];
- natsserver [shape="box", label="", width=4, height=0, penwidth=1];
- subscriber [shape="record", label="{ NATS Subscriber | Application 2}"];
-
- publisher:nats -- natsserver [penwidth=2];
- application:nats -- natsserver;
- natsserver -- subscriber:nats [penwidth=2, dir="forward"];
-}
-