Class Batch.Serializer

    • Constructor Summary

      Constructors 
      Constructor Description
      Serializer()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Batch deserialize​(DataInputPlus in, int version)
      Deserialize into the specified DataInputStream instance.
      void serialize​(Batch batch, DataOutputPlus out, int version)
      Serialize the specified type into the specified DataOutputStream instance.
      long serializedSize​(Batch batch, int version)
      Calculate serialized size of object without actually serializing.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Serializer

        public Serializer()
    • Method Detail

      • serialize

        public void serialize​(Batch batch,
                              DataOutputPlus out,
                              int version)
                       throws java.io.IOException
        Description copied from interface: IVersionedAsymmetricSerializer
        Serialize the specified type into the specified DataOutputStream instance.
        Specified by:
        serialize in interface IVersionedAsymmetricSerializer<Batch,​Batch>
        Parameters:
        batch - type that needs to be serialized
        out - DataOutput into which serialization needs to happen.
        version - protocol version
        Throws:
        java.io.IOException - if serialization fails
      • deserialize

        public Batch deserialize​(DataInputPlus in,
                                 int version)
                          throws java.io.IOException
        Description copied from interface: IVersionedAsymmetricSerializer
        Deserialize into the specified DataInputStream instance.
        Specified by:
        deserialize in interface IVersionedAsymmetricSerializer<Batch,​Batch>
        Parameters:
        in - DataInput from which deserialization needs to happen.
        version - protocol version
        Returns:
        the type that was deserialized
        Throws:
        java.io.IOException - if deserialization fails