Example usage for com.rabbitmq.client RpcClient NO_TIMEOUT

List of usage examples for com.rabbitmq.client RpcClient NO_TIMEOUT

Introduction

In this page you can find the example usage for com.rabbitmq.client RpcClient NO_TIMEOUT.

Prototype

int NO_TIMEOUT

To view the source code for com.rabbitmq.client RpcClient NO_TIMEOUT.

Click Source Link

Document

NO_TIMEOUT value must match convention on BlockingCell#uninterruptibleGet(int)

Usage

From source file:org.fortiss.smg.remoteframework.lib.jsonrpc.JsonRpcClient.java

License:Mozilla Public License

public JsonRpcClient(Channel channel, String exchange, String routingKey)
        throws IOException, JsonRpcException, TimeoutException {
    this(channel, exchange, routingKey, RpcClient.NO_TIMEOUT);
    init();/*from w  w w .j a v a2 s . c o m*/
}