Package | Description |
---|---|
com.kaazing.net.ws.amqp |
Modifier and Type | Method and Description |
---|---|
AmqpChannel |
AmqpChannel.ackBasic(long deliveryTag,
boolean multiple)
This method acknowledges one or more messages delivered via the Deliver or Get-Ok methods.
|
AmqpChannel |
AmqpChannel.bindQueue(String queue,
String exchange,
String routingKey,
boolean noWait,
AmqpArguments arguments)
* This method binds a queue to an exchange.
|
AmqpChannel |
AmqpChannel.cancelBasic(String consumerTag,
boolean noWait)
This method cancels a consumer.
|
AmqpChannel |
AmqpChannel.closeChannel(int replyCode,
String replyText,
int classId,
int methodId1)
This method indicates that the sender wants to close the channel.
|
AmqpChannel |
AmqpChannel.commitTx()
This method commits all message publications and acknowledgments performed in the current transaction.
|
AmqpChannel |
AmqpChannel.consumeBasic(String queue,
String consumerTag,
boolean noLocal,
boolean noAck,
boolean exclusive,
boolean noWait,
AmqpArguments arguments)
This method asks the server to start a "consumer", which is a transient request for messages from a specific queue.
|
AmqpChannel |
AmqpChannel.declareExchange(String exchange,
String type,
boolean passive,
boolean durable,
boolean noWait,
AmqpArguments arguments)
This method creates an exchange if it does not already exist, and if the exchange exists, verifies that it is of the correct and expected class.
|
AmqpChannel |
AmqpChannel.declareQueue(String queue,
boolean passive,
boolean durable,
boolean exclusive,
boolean autoDelete,
boolean noWait,
AmqpArguments arguments)
This method creates or checks a queue.
|
AmqpChannel |
AmqpChannel.deleteExchange(String exchange,
boolean ifUnused,
boolean noWait)
This method deletes an exchange.
|
AmqpChannel |
AmqpChannel.deleteQueue(String queue,
boolean ifUnused,
boolean ifEmpty,
boolean noWait)
This method deletes a queue.
|
AmqpChannel |
AmqpChannel.flowChannel(boolean active)
This method asks the peer to pause or restart the flow of content data sent by a consumer.
|
AmqpChannel |
AmqpChannel.flowOkChannel(boolean active)
Confirms to the peer that a flow command was received and processed.
|
AmqpChannel |
AmqpChannel.getBasic(String queue,
boolean noAck)
Gets messages from the queue and dispatches it to the listener
|
AmqpChannel |
ChannelEvent.getChannel()
Returns the AMQPChannel associated with the event.
|
AmqpChannel |
AmqpClient.openChannel()
Opens a channel on server.
|
AmqpChannel |
AmqpChannel.publishBasic(ByteBuffer body,
AmqpProperties properties,
String exchange,
String routingKey,
boolean mandatory,
boolean immediate)
This method publishes a message to a specific exchange.
|
AmqpChannel |
AmqpChannel.purgeQueue(String queue,
boolean noWait)
This method removes all messages from a queue which are not awaiting acknowledgment.
|
AmqpChannel |
AmqpChannel.qosBasic(int prefetchSize,
int prefetchCount,
boolean global)
This method requests a specific quality of service.
|
AmqpChannel |
AmqpChannel.recoverBasic(boolean requeue)
This method asks the server to redeliver all unacknowledged messages on a specified channel.
|
AmqpChannel |
AmqpChannel.rejectBasic(long deliveryTag,
boolean requeue)
This method allows a client to reject a message.
|
AmqpChannel |
AmqpChannel.rollbackTx()
This method abandons all message publications and acknowledgments performed in the current transaction.
|
AmqpChannel |
AmqpChannel.selectTx()
This method sets the channel to use standard transactions.
|
AmqpChannel |
AmqpChannel.unbindQueue(String queue,
String exchange,
String routingKey,
AmqpArguments arguments)
This method unbinds a queue from an exchange.
|
Constructor and Description |
---|
ChannelEvent(AmqpChannel channel,
ChannelEvent.Kind kind,
com.kaazing.net.ws.amqp.impl.AmqpBuffer.Arg[] args,
Map<String,Object> headers,
ByteBuffer body) |
ChannelEvent(AmqpChannel channel,
ChannelEvent.Kind kind,
String errorMessage) |
Copyright © 2014. All Rights Reserved.