Class GatewayResponse
-
- All Implemented Interfaces:
-
java.io.Externalizable
,java.io.Serializable
,java.lang.Comparable
,org.apache.avro.generic.GenericContainer
,org.apache.avro.generic.GenericRecord
,org.apache.avro.generic.IndexedRecord
,org.apache.avro.specific.SpecificRecord
public class GatewayResponse extends SpecificRecordBase implements SpecificRecord
A response from the p2p gateway component
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
GatewayResponse.Builder
RecordBuilder for GatewayResponse instances.
-
Constructor Summary
Constructors Constructor Description GatewayResponse()
Default constructor. GatewayResponse(String id, Object payload)
All-args constructor.
-
Method Summary
Modifier and Type Method Description String
getId()
Gets the value of the 'id' field. void
setId(String value)
Sets the value of the 'id' field. Object
getPayload()
Gets the value of the 'payload' field. void
setPayload(Object value)
Sets the value of the 'payload' field. static Schema
getClassSchema()
static BinaryMessageEncoder<GatewayResponse>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<GatewayResponse>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<GatewayResponse>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this GatewayResponse to a ByteBuffer. static GatewayResponse
fromByteBuffer(ByteBuffer b)
Deserializes a GatewayResponse from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static GatewayResponse.Builder
newBuilder()
Creates a new GatewayResponse RecordBuilder. static GatewayResponse.Builder
newBuilder(GatewayResponse.Builder other)
Creates a new GatewayResponse RecordBuilder by copying an existing Builder. static GatewayResponse.Builder
newBuilder(GatewayResponse other)
Creates a new GatewayResponse RecordBuilder by copying an existing GatewayResponse instance. void
writeExternal(ObjectOutput out)
void
readExternal(ObjectInput in)
-
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, customDecode, customEncode, equals, getConversion, hashCode, toString
-
Methods inherited from class org.apache.avro.generic.GenericRecord
hasField
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getId
String getId()
Gets the value of the 'id' field.
- Returns:
The id of the request corresponding to this response.
-
setId
void setId(String value)
Sets the value of the 'id' field. The id of the request corresponding to this response.
- Parameters:
value
- the value to set.
-
getPayload
Object getPayload()
Gets the value of the 'payload' field.
- Returns:
The value of the 'payload' field.
-
setPayload
void setPayload(Object value)
Sets the value of the 'payload' field.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<GatewayResponse> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<GatewayResponse> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<GatewayResponse> createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.
- Parameters:
resolver
- a SchemaStore used to find schemas by fingerprint- Returns:
a BinaryMessageDecoder instance for this class backed by the given SchemaStore
-
toByteBuffer
ByteBuffer toByteBuffer()
Serializes this GatewayResponse to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static GatewayResponse fromByteBuffer(ByteBuffer b)
Deserializes a GatewayResponse from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a GatewayResponse instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static GatewayResponse.Builder newBuilder()
Creates a new GatewayResponse RecordBuilder.
- Returns:
A new GatewayResponse RecordBuilder
-
newBuilder
static GatewayResponse.Builder newBuilder(GatewayResponse.Builder other)
Creates a new GatewayResponse RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new GatewayResponse RecordBuilder
-
newBuilder
static GatewayResponse.Builder newBuilder(GatewayResponse other)
Creates a new GatewayResponse RecordBuilder by copying an existing GatewayResponse instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new GatewayResponse RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
-
-
-