Sending Messages

NATS sends and receives messages using a protocol that includes a target subject, an optional reply subject and an array of bytes. Some libraries may provide helpers to convert other data formats to and from bytes, but the NATS server will treat all messages as opaque byte arrays.

All of the NATS clients are designed to make sending a message simple. For example, to send the string “All is Well” to the “updates” subject as a UTF-8 string of bytes you would do:

Go

  1. nc, err := nats.Connect("demo.nats.io", nats.Name("API PublishBytes Example"))
  2. if err != nil {
  3. log.Fatal(err)
  4. }
  5. defer nc.Close()
  6. if err := nc.Publish("updates", []byte("All is Well")); err != nil {
  7. log.Fatal(err)
  8. }

Java

  1. Connection nc = Nats.connect("nats://demo.nats.io:4222");
  2. nc.publish("updates", "All is Well".getBytes(StandardCharsets.UTF_8));
  3. // Make sure the message goes through before we close
  4. nc.flush(Duration.ZERO);
  5. nc.close();

JavaScript

  1. const sc = StringCodec();
  2. nc.publish("updates", sc.encode("All is Well"));

Python

  1. nc = NATS()
  2. await nc.connect(servers=["nats://demo.nats.io:4222"])
  3. await nc.publish("updates", b'All is Well')

Ruby

  1. require 'nats/client'
  2. NATS.start(servers:["nats://127.0.0.1:4222"]) do |nc|
  3. nc.publish("updates", "All is Well")
  4. end

{% endtabs %}