Class: Azure::Queue::Message

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Message

Returns a new instance of Message.

Yields:

  • (_self)

Yield Parameters:



18
19
20
# File 'lib/azure/queue/message.rb', line 18

def initialize
  yield self if block_given?
end

Instance Attribute Details

#dequeue_countObject

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_timeObject

Returns the value of attribute expiration_time.



23
24
25
# File 'lib/azure/queue/message.rb', line 23

def expiration_time
  @expiration_time
end

#idObject

Returns the value of attribute id.



21
22
23
# File 'lib/azure/queue/message.rb', line 21

def id
  @id
end

#insertion_timeObject

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_textObject

Returns the value of attribute message_text.



25
26
27
# File 'lib/azure/queue/message.rb', line 25

def message_text
  @message_text
end

#pop_receiptObject

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_visibleObject

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