Package com.tangosol.io.pof
Interface EvolvableObject
- All Superinterfaces:
PortableObject
Defines an interface that should be implemented by the classes that want to
support evolution.
- Since:
- 12.2.1
- Author:
- as 2013.04.24
-
Method Summary
Modifier and TypeMethodDescriptiongetEvolvable
(int nTypeId) ReturnEvolvable
object for the specified type id.ReturnEvolvableHolder
that should be used to store information about evolvable objects that are not known during deserialization.default void
default void
Restore the contents of a user type instance by reading its state using the specified PofReader object.Methods inherited from interface com.tangosol.io.pof.PortableObject
writeExternal
-
Method Details
-
getEvolvable
ReturnEvolvable
object for the specified type id.This method should only return Evolvable instance if the specified type id matches its own type id. Otherwise, it should delegate to the parent:
// assuming type ID == 1234 and impl. version == 3 private Evolvable evolvable = new SimpleEvolvable(3); ... public Evolvable getEvolvable(int nTypeId) { if (1234 == nTypeId) { return this.evolvable; } return super.getEvolvable(nTypeId); }
- Parameters:
nTypeId
- type id to getEvolvable
instance for- Returns:
- Evolvable instance for the specified type id
-
getEvolvableHolder
EvolvableHolder getEvolvableHolder()ReturnEvolvableHolder
that should be used to store information about evolvable objects that are not known during deserialization.For example, it is possible to evolve the class hierarchy by adding new classes at any level in the hierarchy. Normally this would cause a problem during deserialization on older clients that don't have new classes at all, but EvolvableHolder allows us to work around that issue and simply store type id to opaque binary value mapping within it.
- Returns:
- EvolvableHolder instance
-
readEvolvable
Reads data version and the remainder from the specifiedPofReader
, and updates this object'sEvolvable
.- Parameters:
in
- the reader to read the data version and remainder from- Throws:
IOException
- if an I/O error occurs
-
readExternal
Description copied from interface:PortableObject
Restore the contents of a user type instance by reading its state using the specified PofReader object.- Specified by:
readExternal
in interfacePortableObject
- Parameters:
in
- the PofReader from which to read the object's state- Throws:
IOException
- if an I/O error occurs
-