org.apache.cassandra.utils
Class MerkleTree.MerkleTreeSerializer

java.lang.Object
  extended by org.apache.cassandra.utils.MerkleTree.MerkleTreeSerializer
All Implemented Interfaces:
ICompactSerializer<MerkleTree>
Enclosing class:
MerkleTree

public static class MerkleTree.MerkleTreeSerializer
extends java.lang.Object
implements ICompactSerializer<MerkleTree>


Constructor Summary
MerkleTree.MerkleTreeSerializer()
           
 
Method Summary
 MerkleTree deserialize(java.io.DataInputStream dis, int version)
          Deserialize into the specified DataInputStream instance.
 void serialize(MerkleTree mt, java.io.DataOutputStream dos, int version)
          Serialize the specified type into the specified DataOutputStream instance.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MerkleTree.MerkleTreeSerializer

public MerkleTree.MerkleTreeSerializer()
Method Detail

serialize

public void serialize(MerkleTree mt,
                      java.io.DataOutputStream dos,
                      int version)
               throws java.io.IOException
Description copied from interface: ICompactSerializer
Serialize the specified type into the specified DataOutputStream instance.

Specified by:
serialize in interface ICompactSerializer<MerkleTree>
Parameters:
mt - type that needs to be serialized
dos - DataOutput into which serialization needs to happen.
Throws:
java.io.IOException

deserialize

public MerkleTree deserialize(java.io.DataInputStream dis,
                              int version)
                       throws java.io.IOException
Description copied from interface: ICompactSerializer
Deserialize into the specified DataInputStream instance.

Specified by:
deserialize in interface ICompactSerializer<MerkleTree>
Parameters:
dis - DataInput from which deserialization needs to happen.
Returns:
the type that was deserialized
Throws:
java.io.IOException


Copyright © 2011 The Apache Software Foundation