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

#allObject



11
12
13
14
15
16
17
18
19
# File 'lib/fog/rackspace/models/queues/queues.rb', line 11

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) ⇒ Object



21
22
23
24
25
26
27
28
# File 'lib/fog/rackspace/models/queues/queues.rb', line 21

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