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

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

Introduction

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

Prototype

public int getChannelMax() 

Source Link

Usage

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

License:Mozilla Public License

/** {@inheritDoc} */
public int getChannelMax() {
    ChannelManager cm = _channelManager;
    if (cm == null)
        return 0;
    return cm.getChannelMax();
}