Class: Msgr::Message
- Inherits:
-
Object
- Object
- Msgr::Message
- Defined in:
- lib/msgr/message.rb
Instance Attribute Summary collapse
-
#delivery_info ⇒ Object
readonly
Returns the value of attribute delivery_info.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#payload ⇒ Object
readonly
Returns the value of attribute payload.
-
#route ⇒ Object
readonly
Returns the value of attribute route.
Instance Method Summary collapse
-
#ack ⇒ Object
Send message acknowledge to broker unless message is already acknowledged.
-
#acked? ⇒ Boolean
Check if message is already acknowledged.
- #content_type ⇒ Object
-
#initialize(connection, delivery_info, metadata, payload, route) ⇒ Message
constructor
A new instance of Message.
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_info ⇒ Object (readonly)
Returns the value of attribute delivery_info.
4 5 6 |
# File 'lib/msgr/message.rb', line 4 def delivery_info @delivery_info end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
4 5 6 |
# File 'lib/msgr/message.rb', line 4 def @metadata end |
#payload ⇒ Object (readonly)
Returns the value of attribute payload.
4 5 6 |
# File 'lib/msgr/message.rb', line 4 def payload @payload end |
#route ⇒ Object (readonly)
Returns the value of attribute route.
4 5 6 |
# File 'lib/msgr/message.rb', line 4 def route @route end |
Instance Method Details
#ack ⇒ Object
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.
28 29 30 |
# File 'lib/msgr/message.rb', line 28 def acked? @acked ? true : false end |
#content_type ⇒ Object
19 20 21 |
# File 'lib/msgr/message.rb', line 19 def content_type @metadata.content_type end |