Class: Fog::Rackspace::Queues::Queues

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/rackspace/models/queues/queues.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allFog::Rackspace::Queues::Queues

Returns list of queues



18
19
20
21
22
23
24
25
26
# File 'lib/fog/rackspace/models/queues/queues.rb', line 18

def all
  response = service.list_queues
  if service.list_queues.status == 204
    data = []
  else
    data = service.list_queues.body['queues']
  end
  load(data)
end

#get(queue_name) ⇒ Fog::Rackspace::Queues::Queue

This operation queries the specified queue.



36
37
38
39
40
41
42
43
# File 'lib/fog/rackspace/models/queues/queues.rb', line 36

def get(queue_name)
  #204 no content is returned on success.  That's why no data is passed 
  # from the GET to the constructor.
  service.get_queue(queue_name)
  new({:name => queue_name})
rescue Fog::Rackspace::Queues::NotFound
  nil
end