NATS::JetStream::ConsumerConfig::DeliverPolicy
Inherits Enum / Comparable / Value / Object
Where to begin consuming messages from a stream.
Constants
Deliver all messages from a stream via this consumer
Start from the current last message in the stream when this consumer was created
Start after the current last message in the stream when this
consumer was created. This is different from Last in that it
will not begin delivering messages until more are published.
Start delivery at the sequence in the stream denoted by
opt_start_seq. opt_start_seq is required when this
DeliverPolicy is used.
Start delivery at the first message whose timestamp is equal to
or later than opt_start_time. opt_start_time is _required
when this DeliverPolicy is used.
Similar to Last, but on a per-subject basis.
If you've got this set, something's probably borked. This value only exists in this client because the server can send it.