Class: AMQP::Client::Connection::Channel::QueueOk
- Inherits:
-
Struct
- Object
- Struct
- AMQP::Client::Connection::Channel::QueueOk
- Defined in:
- lib/amqp/client/channel.rb
Overview
Response when declaring a Queue
Queue collapse
-
#consumer_count ⇒ Integer
Number of consumers subscribed to the queue at the time of declaration.
-
#message_count ⇒ Integer
Number of messages in the queue at the time of declaration.
-
#queue_name ⇒ String
The name of the queue.
Instance Attribute Details
#consumer_count ⇒ Integer
Returns Number of consumers subscribed to the queue at the time of declaration.
154 |
# File 'lib/amqp/client/channel.rb', line 154 QueueOk = Struct.new(:queue_name, :message_count, :consumer_count) |
#message_count ⇒ Integer
Returns Number of messages in the queue at the time of declaration.
154 |
# File 'lib/amqp/client/channel.rb', line 154 QueueOk = Struct.new(:queue_name, :message_count, :consumer_count) |
#queue_name ⇒ String
Returns The name of the queue.
154 |
# File 'lib/amqp/client/channel.rb', line 154 QueueOk = Struct.new(:queue_name, :message_count, :consumer_count) |