By default a NATS connection will echo messages if the connection also has interest in the published subject. This means that if a publisher on a connection sends a message to a subject any subscribers on that same connection will receive the message. Clients can opt to turn off this behavior, such that regardless of interest, the message will not be delivered to subscribers on the same connection.
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.
Keep in mind that each connection will have to turn off echo, and that it is per connection, not per application. Also, turning echo on and off can result in a major change to your applications communications protocol since messages will flow or stop flowing based on this setting and the subscribing code won't have any indication as to why.
// Turn off echonc, err := nats.Connect("demo.nats.io", nats.Name("API NoEcho Example"), nats.NoEcho())if err !=nil { log.Fatal(err)}defer nc.Close()// Do something with the connection
Options options =new Options.Builder().server("nats://demo.nats.io:4222").noEcho() // Turn off echo.build();Connection nc =Nats.connect(options);// Do something with the connectionnc.close();
constnc=awaitconnect({ servers: ["demo.nats.io"], noEcho:true,});constsub=nc.subscribe(subj, { callback: (_err, _msg) => {} });nc.publish(subj);awaitsub.drain();// we won't get our own messagest.is(sub.getProcessed(),0);
ncA =NATS()ncB =NATS()await ncA.connect(no_echo=True)await ncB.connect()asyncdefhandler(msg):# Messages sent by `ncA' will not be received.print("[Received] ", msg)await ncA.subscribe("greetings", cb=handler)await ncA.flush()await ncA.publish("greetings", b'Hello World!')await ncB.publish("greetings", b'Hello World!')# Do something with the connectionawait asyncio.sleep(1)await ncA.drain()await ncB.drain()
natsConnection *conn =NULL;natsOptions *opts =NULL;natsStatus s = NATS_OK;s =natsOptions_Create(&opts);if (s == NATS_OK) s =natsOptions_SetNoEcho(opts,true);if (s == NATS_OK) s =natsConnection_Connect(&conn, opts);(...)// Destroy objects that were creatednatsConnection_Destroy(conn);natsOptions_Destroy(opts);