public class ExtendedBindMessage extends Object implements IdentifiedDataSerializable
BindMessage
. It is the first message exchanged on a new connection
so Versioned
serialization cannot be used as there may be no cluster version
established yet. The ExtendedBindMessage
itself includes a
schema version so it can be extended in future versions without having
to use another packet type.BindMessage
Constructor and Description |
---|
ExtendedBindMessage() |
ExtendedBindMessage(byte schemaVersion,
Map<ProtocolType,Collection<Address>> localAddresses,
Address targetAddress,
boolean reply) |
Modifier and Type | Method and Description |
---|---|
int |
getFactoryId()
Returns DataSerializableFactory factory ID for this class.
|
int |
getId()
Returns type identifier for this class.
|
Map<ProtocolType,Collection<Address>> |
getLocalAddresses() |
Address |
getTargetAddress() |
boolean |
isReply() |
void |
readData(ObjectDataInput in)
Reads fields from the input stream
|
String |
toString() |
void |
writeData(ObjectDataOutput out)
Writes object fields to output stream
|
public ExtendedBindMessage()
public ExtendedBindMessage(byte schemaVersion, Map<ProtocolType,Collection<Address>> localAddresses, Address targetAddress, boolean reply)
public Map<ProtocolType,Collection<Address>> getLocalAddresses()
public Address getTargetAddress()
public boolean isReply()
public int getFactoryId()
IdentifiedDataSerializable
getFactoryId
in interface IdentifiedDataSerializable
public int getId()
IdentifiedDataSerializable
getId
in interface IdentifiedDataSerializable
public void writeData(ObjectDataOutput out) throws IOException
DataSerializable
writeData
in interface DataSerializable
out
- outputIOException
- if an I/O error occurs. In particular,
an IOException
may be thrown if the
output stream has been closed.public void readData(ObjectDataInput in) throws IOException
DataSerializable
readData
in interface DataSerializable
in
- inputIOException
- if an I/O error occurs. In particular,
an IOException
may be thrown if the
input stream has been closed.Copyright © 2021 Hazelcast, Inc.. All Rights Reserved.