Skip to main content
Version: 1.2.0

NATS

NATS protocol for lightweight messaging:

Message Format

FieldDescriptionExample Value
OperationCommand typePUB, SUB, MSG, PING, PONG, INFO, CONNECT
SubjectMessage topic/subjectfoo.bar, user.123
Reply-ToOptional reply subject_INBOX.abc123
Payload SizeByte length of payload13
PayloadMessage dataHello, World!
TerminatorCRLF sequence\r\n

Protocol Operations

OperationFormatPurpose
PUBPUB <subject> [reply-to] <size>\r\n<payload>\r\nPublish message
SUBSUB <subject> [queue] <sid>\r\nSubscribe to subject
MSGMSG <subject> <sid> [reply-to] <size>\r\n<payload>\r\nReceived message
PINGPING\r\nKeep-alive request
PONGPONG\r\nKeep-alive response