Uses of Class
com.rabbitmq.client.RpcClientParams
-
Packages that use RpcClientParams Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors. -
-
Uses of RpcClientParams in com.rabbitmq.client
Methods in com.rabbitmq.client that return RpcClientParams Modifier and Type Method Description RpcClientParams
RpcClientParams. channel(Channel channel)
RpcClientParams
RpcClientParams. correlationIdSupplier(RpcClient.CorrelationIdSupplier correlationIdGenerator)
Logic to generate correlation IDs.RpcClientParams
RpcClientParams. exchange(String exchange)
RpcClientParams
RpcClientParams. replyHandler(RpcClient.RpcClientReplyHandler replyHandler)
Set the behavior to use when receiving replies.RpcClientParams
RpcClientParams. replyTo(String replyTo)
Set the queue where the server should put replies on.RpcClientParams
RpcClientParams. routingKey(String routingKey)
Set the routing key to use for requests.RpcClientParams
RpcClientParams. timeout(int timeout)
Set the timeout in milliseconds to use on call responses.RpcClientParams
RpcClientParams. useMandatory()
Instructs to use the mandatory flag when publishing RPC requests.RpcClientParams
RpcClientParams. useMandatory(boolean useMandatory)
Whether to publish RPC requests with the mandatory flag or not.Constructors in com.rabbitmq.client with parameters of type RpcClientParams Constructor Description RpcClient(RpcClientParams params)
Construct aRpcClient
with the passed-inRpcClientParams
.
-