This method deletes a queue.

Namespace:  Kaazing.AMQP
Assembly:  Kaazing.AMQP (in Kaazing.AMQP.dll)

Syntax

Visual Basic
Public Function DeleteQueue ( _
	queue As String, _
	ifUnused As Boolean, _
	ifEmpty As Boolean, _
	noWait As Boolean, _
	callback As AmqpEventHandler _
) As AmqpChannel
C#
public AmqpChannel DeleteQueue(
	string queue,
	bool ifUnused,
	bool ifEmpty,
	bool noWait,
	AmqpEventHandler callback
)
Visual C++
public:
AmqpChannel^ DeleteQueue(
	String^ queue, 
	bool ifUnused, 
	bool ifEmpty, 
	bool noWait, 
	AmqpEventHandler^ callback
)

Parameters

queue
Type: System..::..String
Queue
ifUnused
Type: System..::..Boolean
Delete only if unused
ifEmpty
Type: System..::..Boolean
Delete only if empty
noWait
Type: System..::..Boolean
No - Wait
callback
Type: Kaazing.AMQP..::..AmqpEventHandler
Method to be called on success

Return Value

AmqpChannel

See Also