Class: Azure::Storage::Queue::Message
- Inherits:
-
Object
- Object
- Azure::Storage::Queue::Message
- Defined in:
- lib/azure/storage/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.
29 30 31 |
# File 'lib/azure/storage/queue/message.rb', line 29 def initialize yield self if block_given? end |
Instance Attribute Details
#dequeue_count ⇒ Object
Returns the value of attribute dequeue_count.
35 36 37 |
# File 'lib/azure/storage/queue/message.rb', line 35 def dequeue_count @dequeue_count end |
#expiration_time ⇒ Object
Returns the value of attribute expiration_time.
34 35 36 |
# File 'lib/azure/storage/queue/message.rb', line 34 def expiration_time @expiration_time end |
#id ⇒ Object
Returns the value of attribute id.
32 33 34 |
# File 'lib/azure/storage/queue/message.rb', line 32 def id @id end |
#insertion_time ⇒ Object
Returns the value of attribute insertion_time.
33 34 35 |
# File 'lib/azure/storage/queue/message.rb', line 33 def insertion_time @insertion_time end |
#message_text ⇒ Object
Returns the value of attribute message_text.
36 37 38 |
# File 'lib/azure/storage/queue/message.rb', line 36 def @message_text end |
#pop_receipt ⇒ Object
Returns the value of attribute pop_receipt.
38 39 40 |
# File 'lib/azure/storage/queue/message.rb', line 38 def pop_receipt @pop_receipt end |
#time_next_visible ⇒ Object
Returns the value of attribute time_next_visible.
37 38 39 |
# File 'lib/azure/storage/queue/message.rb', line 37 def time_next_visible @time_next_visible end |