Package org.fusesource.hawtbuf.codec
Class LongCodec
- java.lang.Object
-
- org.fusesource.hawtbuf.codec.LongCodec
-
-
Constructor Summary
Constructors Constructor Description LongCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Longdecode(java.io.DataInput dataIn)Read the payload of the object from the DataInput stream.java.lang.LongdeepCopy(java.lang.Long source)voidencode(java.lang.Long object, java.io.DataOutput dataOut)Write the payload of the object to the DataOutput stream.intestimatedSize(java.lang.Long object)intgetFixedSize()booleanisDeepCopySupported()booleanisEstimatedSizeSupported()
-
-
-
Field Detail
-
INSTANCE
public static final LongCodec INSTANCE
-
-
Method Detail
-
encode
public void encode(java.lang.Long object, java.io.DataOutput dataOut) throws java.io.IOExceptionDescription copied from interface:CodecWrite the payload of the object to the DataOutput stream.
-
decode
public java.lang.Long decode(java.io.DataInput dataIn) throws java.io.IOExceptionDescription copied from interface:CodecRead the payload of the object from the DataInput stream.
-
getFixedSize
public int getFixedSize()
- Specified by:
getFixedSizein interfaceCodec<java.lang.Long>- Returns:
- -1 if the object do not always marshall to a fixed size, otherwise return that fixed size.
-
deepCopy
public java.lang.Long deepCopy(java.lang.Long source)
-
isDeepCopySupported
public boolean isDeepCopySupported()
- Specified by:
isDeepCopySupportedin interfaceCodec<java.lang.Long>- Returns:
- true if the
Codec.deepCopy(Object)operations is supported.
-
isEstimatedSizeSupported
public boolean isEstimatedSizeSupported()
- Specified by:
isEstimatedSizeSupportedin interfaceCodec<java.lang.Long>- Returns:
- true if the
Codec.estimatedSize(Object)operation is supported.
-
estimatedSize
public int estimatedSize(java.lang.Long object)
- Specified by:
estimatedSizein interfaceCodec<java.lang.Long>- Returns:
- the estimated marshaled size of the object.
-
-