Class: Azure::Storage::Queue::Queue
- Inherits:
-
Object
- Object
- Azure::Storage::Queue::Queue
- Defined in:
- queue/lib/azure/storage/queue/queue.rb
Instance Attribute Summary collapse
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Queue
constructor
A new instance of Queue.
Constructor Details
#initialize {|_self| ... } ⇒ Queue
Returns a new instance of Queue.
29 30 31 32 |
# File 'queue/lib/azure/storage/queue/queue.rb', line 29 def initialize @metadata = {} yield self if block_given? end |
Instance Attribute Details
#metadata ⇒ Object
Returns the value of attribute metadata.
35 36 37 |
# File 'queue/lib/azure/storage/queue/queue.rb', line 35 def @metadata end |
#name ⇒ Object
Returns the value of attribute name.
34 35 36 |
# File 'queue/lib/azure/storage/queue/queue.rb', line 34 def name @name end |