NATS::JetStream::Streams
A stream in NATS JetStream represents the history of messages pertaining to a given domain. When you publish a message to a subject that a stream is monitoring, the stream then adds that message to its history in the order it was published.
Constructors
Instance methods
Create a stream of the given storage type and with the given
properties, which are passed unmodified to
NATS::JetStream::StreamConfig.new.
The get_msg API involves some administrative overhead and usually routes
to the stream's primary node in the NATS cluster. The direct_get method
uses the DIRECT.GET API which allows any server hosting the stream
(including replicas) to respond with the message data. Specifying
last_by_subject allows you to get the last message in a stream that was
published to a specific subject. This is used by NATS::KV internally to
fetch values for a given key from replicas for the KV's backing stream.
NOTE: In order to use this API, the stream must have been created with
allow_direct
set to true. For performance reasons, the client does not perform this
check.
The get_msg API involves some administrative overhead and usually routes
to the stream's primary node in the NATS cluster. The direct_get method
uses the DIRECT.GET API which allows any server hosting the stream
(including replicas) to respond with the message data. Specifying
last_by_subject allows you to get the last message in a stream that was
published to a specific subject. This is used by NATS::KV internally to
fetch values for a given key from replicas for the KV's backing stream.
NOTE: In order to use this API, the stream must have been created with
allow_direct
set to true. For performance reasons, the client does not perform this
check.
List all available streams