public interface Connection
Modifier and Type | Method and Description |
---|---|
void |
close()
Close this connection and all its channels
with the
AMQP.REPLY_SUCCESS close code
and message 'OK'. |
com.rabbitmq.client.Channel |
createChannel(boolean transactional)
Create a new channel, using an internally allocated channel number.
|
boolean |
isOpen()
Flag to indicate the status of the connection.
|
com.rabbitmq.client.Channel createChannel(boolean transactional) throws AmqpException
transactional
- true if the channel should support transactionsAmqpException
- if an I/O problem is encounteredvoid close() throws AmqpException
AMQP.REPLY_SUCCESS
close code
and message 'OK'.
Waits for all the close operations to complete.AmqpException
- if an I/O problem is encounteredboolean isOpen()