Package org.apache.cassandra.dht
Class Token.TokenSerializer
java.lang.Object
org.apache.cassandra.dht.Token.TokenSerializer
- All Implemented Interfaces:
IPartitionerDependentSerializer<Token>
- Enclosing class:
- Token
public static class Token.TokenSerializer
extends Object
implements IPartitionerDependentSerializer<Token>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondeserialize(DataInput in, IPartitioner p, int version) Deserialize into the specified DataInputStream instance.intvoidserialize(Token token, DataOutputPlus out, int version) Serialize the specified type into the specified DataOutputStream instance.longserializedSize(Token object, int version) Calculate serialized size of object without actually serializing.
-
Constructor Details
-
TokenSerializer
public TokenSerializer()
-
-
Method Details
-
serialize
Description copied from interface:IPartitionerDependentSerializerSerialize the specified type into the specified DataOutputStream instance.- Specified by:
serializein interfaceIPartitionerDependentSerializer<Token>- Parameters:
token- type that needs to be serializedout- DataOutput into which serialization needs to happen.version- protocol version- Throws:
IOException- if serialization fails
-
deserialize
Description copied from interface:IPartitionerDependentSerializerDeserialize into the specified DataInputStream instance.- Specified by:
deserializein interfaceIPartitionerDependentSerializer<Token>- Parameters:
in- DataInput from which deserialization needs to happen.p- Partitioner that will be used to construct tokens. Needs to match the partitioner that was used to serialize the token.version- protocol version- Returns:
- the type that was deserialized
- Throws:
IOException- if deserialization fails
-
deserializeSize
- Throws:
IOException
-
serializedSize
Description copied from interface:IPartitionerDependentSerializerCalculate serialized size of object without actually serializing.- Specified by:
serializedSizein interfaceIPartitionerDependentSerializer<Token>- Parameters:
object- object to calculate serialized sizeversion- protocol version- Returns:
- serialized size of object t
-