Class: Msgr::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/msgr/message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(connection, delivery_info, metadata, payload, route) ⇒ Message

Returns a new instance of Message.



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/msgr/message.rb', line 6

def initialize(connection, delivery_info, , payload, route)
  @connection    = connection
  @delivery_info = delivery_info
        = 
  @payload       = payload
  @route         = route

  # rubocop:disable Style/GuardClause
  if content_type == 'application/json'
    @payload = MultiJson.load(payload)
    @payload.symbolize_keys! if @payload.respond_to? :symbolize_keys!
  end
end

Instance Attribute Details

#delivery_infoObject (readonly)

Returns the value of attribute delivery_info.



4
5
6
# File 'lib/msgr/message.rb', line 4

def delivery_info
  @delivery_info
end

#metadataObject (readonly)

Returns the value of attribute metadata.



4
5
6
# File 'lib/msgr/message.rb', line 4

def 
  
end

#payloadObject (readonly)

Returns the value of attribute payload.



4
5
6
# File 'lib/msgr/message.rb', line 4

def payload
  @payload
end

#routeObject (readonly)

Returns the value of attribute route.



4
5
6
# File 'lib/msgr/message.rb', line 4

def route
  @route
end

Instance Method Details

#ackObject

Send message acknowledge to broker unless message is already acknowledged.



38
39
40
41
42
43
# File 'lib/msgr/message.rb', line 38

def ack
  return if acked?

  @acked = true
  @connection.ack delivery_info.delivery_tag
end

#acked?Boolean

Check if message is already acknowledged.

Returns:

  • (Boolean)

    True if message is acknowledged, false otherwise.



29
30
31
# File 'lib/msgr/message.rb', line 29

def acked?
  @acked ? true : false
end

#content_typeObject



20
21
22
# File 'lib/msgr/message.rb', line 20

def content_type
  .content_type
end

#nackObject

Send negative message acknowledge to broker unless message is already acknowledged.



50
51
52
53
54
55
# File 'lib/msgr/message.rb', line 50

def nack
  return if acked?

  @acked = true
  @connection.nack delivery_info.delivery_tag
end