enum

NATS::JetStream::ConsumerConfig::ReplayPolicy

Inherits Enum / Comparable / Value / Object

A consumer's replay_policy is the pace at which to replay messages from a stream.

See ReplayPolicy in the NATS server code

Constants

Instant = 0

Tells the NATS server to deliver messages immediately

Original = 1

Tells the NATS server to deliver messages at the rate they were originally published.

Instance methods

instant?

Returns true if this enum value equals Instant

Source
original?

Returns true if this enum value equals Original

Source