public class HandshakeResponse extends SpecificRecordBase implements SpecificRecord
Modifier and Type | Class and Description |
---|---|
static class |
HandshakeResponse.Builder
RecordBuilder for HandshakeResponse instances.
|
Constructor and Description |
---|
HandshakeResponse()
Default constructor.
|
HandshakeResponse(HandshakeMatch match,
String serverProtocol,
MD5 serverHash,
Map<String,ByteBuffer> meta)
All-args constructor.
|
Modifier and Type | Method and Description |
---|---|
static BinaryMessageDecoder<HandshakeResponse> |
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified
SchemaStore . |
void |
customDecode(ResolvingDecoder in) |
void |
customEncode(Encoder out) |
static HandshakeResponse |
fromByteBuffer(ByteBuffer b)
Deserializes a HandshakeResponse from a ByteBuffer.
|
Object |
get(int field$)
Return the value of a field given its position in the schema.
|
static Schema |
getClassSchema() |
static BinaryMessageDecoder<HandshakeResponse> |
getDecoder()
Return the BinaryMessageDecoder instance used by this class.
|
static BinaryMessageEncoder<HandshakeResponse> |
getEncoder()
Return the BinaryMessageEncoder instance used by this class.
|
HandshakeMatch |
getMatch()
Gets the value of the 'match' field.
|
Map<String,ByteBuffer> |
getMeta()
Gets the value of the 'meta' field.
|
Optional<HandshakeMatch> |
getOptionalMatch()
Gets the value of the 'match' field as an Optional<org.apache.avro.ipc.HandshakeMatch>.
|
Optional<Map<String,ByteBuffer>> |
getOptionalMeta()
Gets the value of the 'meta' field as an Optional<java.util.Map
|
Optional<MD5> |
getOptionalServerHash()
Gets the value of the 'serverHash' field as an Optional<org.apache.avro.ipc.MD5>.
|
Optional<String> |
getOptionalServerProtocol()
Gets the value of the 'serverProtocol' field as an Optional<java.lang.String>.
|
Schema |
getSchema()
The schema of this instance.
|
MD5 |
getServerHash()
Gets the value of the 'serverHash' field.
|
String |
getServerProtocol()
Gets the value of the 'serverProtocol' field.
|
SpecificData |
getSpecificData() |
protected boolean |
hasCustomCoders()
Returns true iff an instance supports the
MessageEncoder.encode(D) and
MessageDecoder.decode(java.io.InputStream) operations. |
static HandshakeResponse.Builder |
newBuilder()
Creates a new HandshakeResponse RecordBuilder.
|
static HandshakeResponse.Builder |
newBuilder(HandshakeResponse.Builder other)
Creates a new HandshakeResponse RecordBuilder by copying an existing Builder.
|
static HandshakeResponse.Builder |
newBuilder(HandshakeResponse other)
Creates a new HandshakeResponse RecordBuilder by copying an existing HandshakeResponse instance.
|
void |
put(int field$,
Object value$)
Set the value of a field given its position in the schema.
|
void |
readExternal(ObjectInput in) |
void |
setMatch(HandshakeMatch value)
Sets the value of the 'match' field.
|
void |
setMeta(Map<String,ByteBuffer> value)
Sets the value of the 'meta' field.
|
void |
setServerHash(MD5 value)
Sets the value of the 'serverHash' field.
|
void |
setServerProtocol(String value)
Sets the value of the 'serverProtocol' field.
|
ByteBuffer |
toByteBuffer()
Serializes this HandshakeResponse to a ByteBuffer.
|
void |
writeExternal(ObjectOutput out) |
compareTo, equals, get, getConversion, getConversion, hashCode, put, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
hasField
public static final Schema SCHEMA$
public HandshakeResponse()
newBuilder()
.public HandshakeResponse(HandshakeMatch match, String serverProtocol, MD5 serverHash, Map<String,ByteBuffer> meta)
match
- The new value for matchserverProtocol
- The new value for serverProtocolserverHash
- The new value for serverHashmeta
- The new value for metapublic static Schema getClassSchema()
public static BinaryMessageEncoder<HandshakeResponse> getEncoder()
public static BinaryMessageDecoder<HandshakeResponse> getDecoder()
public static BinaryMessageDecoder<HandshakeResponse> createDecoder(SchemaStore resolver)
SchemaStore
.resolver
- a SchemaStore
used to find schemas by fingerprintpublic ByteBuffer toByteBuffer() throws IOException
IOException
- if this instance could not be serializedpublic static HandshakeResponse fromByteBuffer(ByteBuffer b) throws IOException
b
- a byte buffer holding serialized data for an instance of this classIOException
- if the given bytes could not be deserialized into an instance of this classpublic SpecificData getSpecificData()
getSpecificData
in class SpecificRecordBase
public Schema getSchema()
GenericContainer
getSchema
in interface GenericContainer
getSchema
in class SpecificRecordBase
public Object get(int field$)
IndexedRecord
This method is not meant to be called by user code, but only by
DatumWriter
implementations.
get
in interface IndexedRecord
get
in class SpecificRecordBase
public void put(int field$, Object value$)
IndexedRecord
This method is not meant to be called by user code, but only by
DatumReader
implementations.
put
in interface IndexedRecord
put
in class SpecificRecordBase
public HandshakeMatch getMatch()
public Optional<HandshakeMatch> getOptionalMatch()
public void setMatch(HandshakeMatch value)
value
- the value to set.public String getServerProtocol()
public Optional<String> getOptionalServerProtocol()
public void setServerProtocol(String value)
value
- the value to set.public MD5 getServerHash()
public Optional<MD5> getOptionalServerHash()
public void setServerHash(MD5 value)
value
- the value to set.public Map<String,ByteBuffer> getMeta()
public Optional<Map<String,ByteBuffer>> getOptionalMeta()
public void setMeta(Map<String,ByteBuffer> value)
value
- the value to set.public static HandshakeResponse.Builder newBuilder()
public static HandshakeResponse.Builder newBuilder(HandshakeResponse.Builder other)
other
- The existing builder to copy.public static HandshakeResponse.Builder newBuilder(HandshakeResponse other)
other
- The existing instance to copy.public void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
writeExternal
in class SpecificRecordBase
IOException
public void readExternal(ObjectInput in) throws IOException
readExternal
in interface Externalizable
readExternal
in class SpecificRecordBase
IOException
protected boolean hasCustomCoders()
SpecificRecordBase
MessageEncoder.encode(D)
and
MessageDecoder.decode(java.io.InputStream)
operations. Should only be used by
SpecificDatumReader/Writer
to selectively use
SpecificRecordBase.customEncode(org.apache.avro.io.Encoder)
and SpecificRecordBase.customDecode(org.apache.avro.io.ResolvingDecoder)
to optimize the
(de)serialization of values.hasCustomCoders
in class SpecificRecordBase
public void customEncode(Encoder out) throws IOException
customEncode
in class SpecificRecordBase
IOException
public void customDecode(ResolvingDecoder in) throws IOException
customDecode
in class SpecificRecordBase
IOException
Copyright © 2009–2021 The Apache Software Foundation. All rights reserved.