This method provides a direct access to the messages in a queue using a synchronous dialogue that is designed for specific types of application where synchronous functionality is more important than performance.

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

Syntax

Visual Basic
Public Function GetBasic ( _
	queue As String, _
	noAck As Boolean, _
	callback As AmqpEventHandler _
) As AmqpChannel
C#
public AmqpChannel GetBasic(
	string queue,
	bool noAck,
	AmqpEventHandler callback
)
Visual C++
public:
AmqpChannel^ GetBasic(
	String^ queue, 
	bool noAck, 
	AmqpEventHandler^ callback
)

Parameters

queue
Type: System..::..String
Queue
noAck
Type: System..::..Boolean
No - Ack
callback
Type: Kaazing.AMQP..::..AmqpEventHandler
Method to be called on success

Return Value

AmqpChannel

See Also