标签:style http io os ar strong for div art
Represents AMQP 0.9.1 queue.
Channel this queue uses.
Queue name.
Options this queue was created with.
Additional optional arguments (typically used by RabbitMQ extensions and plugins).
True if this queue was declared as automatically deleted (deleted as soon as last consumer unbinds).
Binds queue to an exchange.
How many active consumers the queue has.
Deletes the queue.
True if this queue was declared as durable (will survive broker restart).
True if this queue was declared as exclusive (limited to just one consumer).
A new instance of Queue.
How many messages the queue has ready (e.g. not delivered but not unacknowledged).
Triple of delivery info, message properties and message content.
Publishes a message to the queue via default exchange.
Purges a queue (removes all messages from it).
True if this queue was declared as server named.
A hash with information about the number of queue messages and consumers.
Adds a consumer to the queue (subscribes for message deliveries).
Adds a consumer object to the queue (subscribes for message deliveries).
Unbinds queue from an exchange.
Returns a new instance of Queue
Returns Additional optional arguments (typically used by RabbitMQ extensions and plugins)
Returns true if this queue was declared as automatically deleted (deleted as soon as last consumer unbinds).
Binds queue to an exchange
Returns true if this queue was declared as durable (will survive broker restart).
Returns true if this queue was declared as exclusive (limited to just one consumer)
Returns Triple of delivery info, message properties and message content. If the queue is empty, all three will be nils.
Publishes a message to the queue via default exchange. Takes the same arguments as Exchange#publish
Purges a queue (removes all messages from it)
Returns true if this queue was declared as server named.
Returns A hash with information about the number of queue messages and consumers
Adds a consumer to the queue (subscribes for message deliveries).
Adds a consumer object to the queue (subscribes for message deliveries).
Unbinds queue from an exchange
标签:style http io os ar strong for div art
原文地址:http://www.cnblogs.com/qinyan20/p/3982033.html