Example usage for Java com.rabbitmq.client Connection fields, constructors, methods, implement or subclass
The text is from its open source code.
void | abort(int timeout) Abort this connection and all its channels with the com.rabbitmq.client.AMQP#REPLY_SUCCESS close code and message 'OK'. |
void | abort() Abort this connection and all its channels with the com.rabbitmq.client.AMQP#REPLY_SUCCESS close code and message 'OK'. |
void | abort(int closeCode, String closeMessage) Abort this connection and all its channels. |
void | abort(int closeCode, String closeMessage, int timeout) Abort this connection and all its channels. |
void | addBlockedListener(BlockedListener listener) Add a BlockedListener . |
void | close() Close this connection and all its channels with the com.rabbitmq.client.AMQP#REPLY_SUCCESS close code and message 'OK'. |
void | close(int closeCode, String closeMessage) Close this connection and all its channels. |
void | close(int timeout) Close this connection and all its channels with the com.rabbitmq.client.AMQP#REPLY_SUCCESS close code and message 'OK'. |
void | close(int closeCode, String closeMessage, int timeout) Close this connection and all its channels. |
Channel | createChannel() Create a new channel, using an internally allocated channel number. |
Channel | createChannel(int channelNumber) Create a new channel, using the specified channel number if possible. |
InetAddress | getAddress() Retrieve the host. |
Map | getClientProperties() Get a copy of the map of client properties sent to the server |
int | getPort() Retrieve the port number. |
Map | getServerProperties() Retrieve the server properties. |
void | setId(String id) Sets a unique ID for this connection. |