Package com.tangosol.io
Class AbstractEvolvable
java.lang.Object
com.tangosol.io.AbstractEvolvable
- All Implemented Interfaces:
Evolvable
- Direct Known Subclasses:
AbstractEvolvableProcessor,BaseQueryResult,BinaryQuantIndex,DocumentChunk,Subscriber.CommitResult
An abstract base class for implementing Evolvable objects.
- Author:
- cp/jh/mf 2006.07.20
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintObtain the version associated with the data stream from which this object was deserialized.Return all the unknown remainder of the data stream from which this object was deserialized.abstract intDetermine the serialization version supported by the implementing class.voidsetDataVersion(int nVersion) Set the version associated with the data stream with which this object is being deserialized.voidsetFutureData(Binary binFuture) Store the unknown remainder of the data stream from which this object is being deserialized.
-
Constructor Details
-
AbstractEvolvable
public AbstractEvolvable()
-
-
Method Details
-
getImplVersion
public abstract int getImplVersion()Determine the serialization version supported by the implementing class.- Specified by:
getImplVersionin interfaceEvolvable- Returns:
- the serialization version supported by this object
-
getDataVersion
public int getDataVersion()Obtain the version associated with the data stream from which this object was deserialized. If the object was constructed (not deserialized), the data version is the same as the implementation version.- Specified by:
getDataVersionin interfaceEvolvable- Returns:
- the version of the data used to initialize this object, greater than or equal to zero
-
setDataVersion
public void setDataVersion(int nVersion) Set the version associated with the data stream with which this object is being deserialized.- Specified by:
setDataVersionin interfaceEvolvable- Parameters:
nVersion- the version of the data in the data stream that will be used to deserialize this object; greater than or equal to zero
-
getFutureData
Return all the unknown remainder of the data stream from which this object was deserialized. The remainder is unknown because it is data that was originally written by a future version of this object's class.- Specified by:
getFutureDatain interfaceEvolvable- Returns:
- future data in binary form
-
setFutureData
Store the unknown remainder of the data stream from which this object is being deserialized. The remainder is unknown because it is data that was originally written by a future version of this object's class.- Specified by:
setFutureDatain interfaceEvolvable- Parameters:
binFuture- future data in binary form
-