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
# File 'lib/msgr/message.rb', line 6

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

  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 
  @metadata
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.



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

def ack
  unless acked?
    @acked = true
    @connection.ack delivery_info.delivery_tag
  end
end

#acked?Boolean

Check if message is already acknowledged.

Returns:

  • (Boolean)

    True if message is acknowledged, false otherwise.



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

def acked?
  @acked ? true : false
end

#content_typeObject



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

def content_type
  @metadata.content_type
end

#nackObject

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



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

def nack
  unless acked?
    @acked = true
    @connection.nack delivery_info.delivery_tag
  end
end