Package org.jgroups.util
Class LongSizeStreamable
- java.lang.Object
-
- org.jgroups.util.LongSizeStreamable
-
- All Implemented Interfaces:
java.util.function.LongSupplier
,SizeStreamable
,Streamable
public final class LongSizeStreamable extends java.lang.Object implements SizeStreamable, java.util.function.LongSupplier
- Since:
- 5.2
- Author:
- Pedro Ruivo
-
-
Constructor Summary
Constructors Constructor Description LongSizeStreamable()
LongSizeStreamable(long value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getAsLong()
void
readFrom(java.io.DataInput in)
Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedint
serializedSize()
Returns the size (in bytes) of the marshalled objectvoid
writeTo(java.io.DataOutput out)
Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Method Detail
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamable
Returns the size (in bytes) of the marshalled object- Specified by:
serializedSize
in interfaceSizeStreamable
-
writeTo
public void writeTo(java.io.DataOutput out) throws java.io.IOException
Description copied from interface:Streamable
Write the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
writeTo
in interfaceStreamable
- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInput in) throws java.io.IOException, java.lang.ClassNotFoundException
Description copied from interface:Streamable
Read the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
readFrom
in interfaceStreamable
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
getAsLong
public long getAsLong()
- Specified by:
getAsLong
in interfacejava.util.function.LongSupplier
-
-