Package org.jgroups.util
Class ObjectWrapper
- java.lang.Object
-
- org.jgroups.util.ObjectWrapper
-
- All Implemented Interfaces:
SizeStreamable,Streamable
public class ObjectWrapper extends java.lang.Object implements SizeStreamable
Wraps an object and its serialized form.- Since:
- 5.0.0
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Objectobjprotected ByteArrayserialized
-
Constructor Summary
Constructors Constructor Description ObjectWrapper()ObjectWrapper(java.lang.Object obj)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLength()<T> TgetObject()ByteArraygetSerialized()voidreadFrom(java.io.DataInput in)Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedintserializedSize()Returns the size (in bytes) of the marshalled objectObjectWrappersetObject(java.lang.Object obj)java.lang.StringtoString()voidwriteTo(java.io.DataOutput out)Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Field Detail
-
obj
protected java.lang.Object obj
-
serialized
protected ByteArray serialized
-
-
Method Detail
-
getObject
public <T> T getObject()
-
setObject
public ObjectWrapper setObject(java.lang.Object obj)
-
getSerialized
public ByteArray getSerialized()
-
getLength
public int getLength()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamableReturns the size (in bytes) of the marshalled object- Specified by:
serializedSizein interfaceSizeStreamable
-
writeTo
public void writeTo(java.io.DataOutput out) throws java.io.IOExceptionDescription copied from interface:StreamableWrite the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
writeToin interfaceStreamable- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInput in) throws java.io.IOException, java.lang.ClassNotFoundExceptionDescription copied from interface:StreamableRead the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
-