Package com.rabbitmq.client
Class RpcClient.Response
- java.lang.Object
-
- com.rabbitmq.client.RpcClient.Response
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
body
protected String
consumerTag
protected Envelope
envelope
protected AMQP.BasicProperties
properties
-
Constructor Summary
Constructors Constructor Description Response()
Response(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getBody()
String
getConsumerTag()
Envelope
getEnvelope()
AMQP.BasicProperties
getProperties()
-
-
-
Field Detail
-
consumerTag
protected String consumerTag
-
envelope
protected Envelope envelope
-
properties
protected AMQP.BasicProperties properties
-
body
protected byte[] body
-
-
Constructor Detail
-
Response
public Response()
-
Response
public Response(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
-
-
Method Detail
-
getConsumerTag
public String getConsumerTag()
-
getEnvelope
public Envelope getEnvelope()
-
getProperties
public AMQP.BasicProperties getProperties()
-
getBody
public byte[] getBody()
-
-