class EventQ::MessageArgs

Attributes

abort[RW]
content_type[R]
context[R]
drop[RW]
id[R]
retry_attempts[R]
sent[R]
type[R]

Public Class Methods

new(type:, retry_attempts:, context: {}, content_type:, id: nil, sent: nil) click to toggle source
# File lib/eventq_base/message_args.rb, line 12
def initialize(type:, retry_attempts:, context: {}, content_type:, id: nil, sent: nil)
  @type = type
  @retry_attempts = retry_attempts
  @abort = false
  @drop = false
  @context = context
  @content_type = content_type
  @id = id
  @sent = sent
end