use of com.rabbitmq.client.impl.AMQCommand in project rabbitmq-java-client by rabbitmq.
the class AutorecoveringChannel method rpc.
@Override
public Command rpc(Method method) throws IOException {
recordOnRpcRequest(method);
AMQCommand response = delegate.rpc(method);
recordOnRpcResponse(response.getMethod(), method);
return response;
}
Aggregations