Package org.apache.cassandra.dht
Class AbstractBounds.AbstractBoundsSerializer<T extends RingPosition<T>>
java.lang.Object
org.apache.cassandra.dht.AbstractBounds.AbstractBoundsSerializer<T>
- All Implemented Interfaces:
IPartitionerDependentSerializer<AbstractBounds<T>>
- Enclosing class:
- AbstractBounds<T extends RingPosition<T>>
public static class AbstractBounds.AbstractBoundsSerializer<T extends RingPosition<T>>
extends Object
implements IPartitionerDependentSerializer<AbstractBounds<T>>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondeserialize(DataInput in, IPartitioner p, int version) Deserialize into the specified DataInputStream instance.voidserialize(AbstractBounds<T> range, DataOutputPlus out, int version) Serialize the specified type into the specified DataOutputStream instance.longserializedSize(AbstractBounds<T> ab, int version) Calculate serialized size of object without actually serializing.
-
Constructor Details
-
AbstractBoundsSerializer
-
-
Method Details
-
serialize
Description copied from interface:IPartitionerDependentSerializerSerialize the specified type into the specified DataOutputStream instance.- Specified by:
serializein interfaceIPartitionerDependentSerializer<T extends RingPosition<T>>- Parameters:
range- 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<T extends RingPosition<T>>- 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
-
serializedSize
Description copied from interface:IPartitionerDependentSerializerCalculate serialized size of object without actually serializing.- Specified by:
serializedSizein interfaceIPartitionerDependentSerializer<T extends RingPosition<T>>- Parameters:
ab- object to calculate serialized sizeversion- protocol version- Returns:
- serialized size of object t
-