Class VoidSerializer

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Void deserialize​(DataInputPlus in, int version)
      Deserialize into the specified DataInputStream instance.
      void serialize​(java.lang.Void v, DataOutputPlus out, int version)
      Serialize the specified type into the specified DataOutputStream instance.
      long serializedSize​(java.lang.Void v, 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
    • Method Detail

      • serialize

        public void serialize​(java.lang.Void v,
                              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<java.lang.Void,​java.lang.Void>
        Parameters:
        v - 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 java.lang.Void 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<java.lang.Void,​java.lang.Void>
        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
      • serializedSize

        public long serializedSize​(java.lang.Void v,
                                   int version)
        Description copied from interface: IVersionedAsymmetricSerializer
        Calculate serialized size of object without actually serializing.
        Specified by:
        serializedSize in interface IVersionedAsymmetricSerializer<java.lang.Void,​java.lang.Void>
        Parameters:
        v - object to calculate serialized size
        version - protocol version
        Returns:
        serialized size of object t