Class: NATS::JetStream::PubAck
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats/io/jetstream.rb
Overview
PubAck is the API response from a successfully published message.
Instance Attribute Summary collapse
-
#stream ⇒ String
readonly
Name of the stream that processed the published message.
Instance Method Summary collapse
-
#domain(value) ⇒ String
JetStream Domain that processed the ack response.
-
#duplicate(value) ⇒ Boolean
Indicates whether the published message is a duplicate.
-
#seq(value) ⇒ Fixnum
Sequence of the message in the stream.
Methods inherited from Struct
Instance Attribute Details
Instance Method Details
#domain=(value) ⇒ String
Returns JetStream Domain that processed the ack response.
71 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats/io/jetstream.rb', line 71 PubAck = Struct.new(:stream, :seq, :duplicate, :domain, keyword_init: true) |