Uses of Class
com.rabbitmq.client.RpcClient.Response
-
Packages that use RpcClient.Response Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors. -
-
Uses of RpcClient.Response in com.rabbitmq.client
Fields in com.rabbitmq.client with type parameters of type RpcClient.Response Modifier and Type Field Description private java.util.function.Function<java.lang.Object,RpcClient.Response>
RpcClient. _replyHandler
static java.util.function.Function<java.lang.Object,RpcClient.Response>
RpcClient. DEFAULT_REPLY_HANDLER
private java.util.function.Function<java.lang.Object,RpcClient.Response>
RpcClientParams. replyHandler
Behavior to handle reply messages.Methods in com.rabbitmq.client that return RpcClient.Response Modifier and Type Method Description RpcClient.Response
RpcClient. doCall(AMQP.BasicProperties props, byte[] message)
RpcClient.Response
RpcClient. doCall(AMQP.BasicProperties props, byte[] message, int timeout)
RpcClient.Response
RpcClient. responseCall(byte[] message)
Perform a simple byte-array-based RPC roundtrip Useful if you need to get at more than just the body of the messageRpcClient.Response
RpcClient. responseCall(byte[] message, int timeout)
Perform a simple byte-array-based RPC roundtrip Useful if you need to get at more than just the body of the messageMethods in com.rabbitmq.client that return types with arguments of type RpcClient.Response Modifier and Type Method Description java.util.function.Function<java.lang.Object,RpcClient.Response>
RpcClientParams. getReplyHandler()
Method parameters in com.rabbitmq.client with type arguments of type RpcClient.Response Modifier and Type Method Description RpcClientParams
RpcClientParams. replyHandler(java.util.function.Function<java.lang.Object,RpcClient.Response> replyHandler)
Set the behavior to use when receiving replies.
-