Class: Azure::Queue::Message
- Inherits:
-
Object
- Object
- Azure::Queue::Message
- Defined in:
- lib/azure/queue/message.rb
Instance Attribute Summary collapse
-
#dequeue_count ⇒ Object
Returns the value of attribute dequeue_count.
-
#expiration_time ⇒ Object
Returns the value of attribute expiration_time.
-
#id ⇒ Object
Returns the value of attribute id.
-
#insertion_time ⇒ Object
Returns the value of attribute insertion_time.
-
#message_text ⇒ Object
Returns the value of attribute message_text.
-
#pop_receipt ⇒ Object
Returns the value of attribute pop_receipt.
-
#time_next_visible ⇒ Object
Returns the value of attribute time_next_visible.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Message
constructor
A new instance of Message.
Constructor Details
#initialize {|_self| ... } ⇒ Message
Returns a new instance of Message.
18 19 20 |
# File 'lib/azure/queue/message.rb', line 18 def initialize yield self if block_given? end |
Instance Attribute Details
#dequeue_count ⇒ Object
Returns the value of attribute dequeue_count.
24 25 26 |
# File 'lib/azure/queue/message.rb', line 24 def dequeue_count @dequeue_count end |
#expiration_time ⇒ Object
Returns the value of attribute expiration_time.
23 24 25 |
# File 'lib/azure/queue/message.rb', line 23 def expiration_time @expiration_time end |
#id ⇒ Object
Returns the value of attribute id.
21 22 23 |
# File 'lib/azure/queue/message.rb', line 21 def id @id end |
#insertion_time ⇒ Object
Returns the value of attribute insertion_time.
22 23 24 |
# File 'lib/azure/queue/message.rb', line 22 def insertion_time @insertion_time end |
#message_text ⇒ Object
Returns the value of attribute message_text.
25 26 27 |
# File 'lib/azure/queue/message.rb', line 25 def @message_text end |
#pop_receipt ⇒ Object
Returns the value of attribute pop_receipt.
27 28 29 |
# File 'lib/azure/queue/message.rb', line 27 def pop_receipt @pop_receipt end |
#time_next_visible ⇒ Object
Returns the value of attribute time_next_visible.
26 27 28 |
# File 'lib/azure/queue/message.rb', line 26 def time_next_visible @time_next_visible end |