Example usage for com.rabbitmq.client.impl ChannelManager handleSignal

List of usage examples for com.rabbitmq.client.impl ChannelManager handleSignal

Introduction

In this page you can find the example usage for com.rabbitmq.client.impl ChannelManager handleSignal.

Prototype

public void handleSignal(final ShutdownSignalException signal) 

Source Link

Document

Handle shutdown.

Usage

From source file:de.htwk_leipzig.bis.connection.handshake.clientRewrite.Copyright.java

License:Mozilla Public License

private void finishShutdown(ShutdownSignalException sse) {
    ChannelManager cm = _channelManager;
    if (cm != null)
        cm.handleSignal(sse);
}