VMware GemFire Native C++ Reference
9.1
|
This abstract base class is the superclass of all user objects in the cache that can be serialized. More...
Inherits apache::geode::client::SharedBase.
Inherited by apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableKey, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableUndefined, apache::geode::client::Properties, apache::geode::client::RegionAttributes, apache::geode::client::Struct, and apache::geode::client::UserFunctionExecutionException.
Public Member Functions | |
virtual int32_t | classId () const =0 |
Return the classId of the instance being serialized. More... | |
virtual int8_t | DSFID () const |
return the Data Serialization Fixed ID type. More... | |
virtual Serializable * | fromData (DataInput &input)=0 |
deserialize this object, typical implementation should return the 'this' pointer. More... | |
virtual uint32_t | objectSize () const |
return the size in bytes of the instance being serialized. More... | |
void | preserveSB () const |
Atomically increment reference count. More... | |
int32_t | refCount () |
void | releaseSB () const |
Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero. More... | |
virtual void | toData (DataOutput &output) const =0 |
serialize this object More... | |
virtual CacheableStringPtr | toString () const |
Display this object as 'string', which depends on the implementation in the subclasses. More... | |
virtual int8_t | typeId () const |
return the typeId byte of the instance being serialized. More... | |
virtual | ~Serializable () |
destructor More... | |
Static Public Member Functions | |
template<class PRIM > | |
static SerializablePtr | create (const PRIM value) |
Factory method that creates the Serializable object that matches the type of value. More... | |
static void | registerPdxSerializer (PdxSerializerPtr pdxSerializer) |
Register the PDX serializer which can handle serialization for instances of user domain classes. More... | |
static void | registerPdxType (TypeFactoryMethodPdx creationFunction) |
register an Pdx instance factory method for a given type. More... | |
static void | registerType (TypeFactoryMethod creationFunction) |
register an instance factory method for a given type. More... | |
Protected Member Functions | |
Serializable () | |
constructors More... | |
This abstract base class is the superclass of all user objects in the cache that can be serialized.
|
inlinevirtual |
destructor
|
inlineprotected |
constructors
|
pure virtual |
Return the classId of the instance being serialized.
This is used by deserialization to determine what instance type to create and deserialize into.
The classId must be unique within an application suite. Using a negative value may result in undefined behavior.
Implemented in apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::RegionAttributes, apache::geode::client::Properties, apache::geode::client::Struct, apache::geode::client::CacheableEnum, apache::geode::client::CacheableString, apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >, apache::geode::client::CacheableDate, apache::geode::client::UserFunctionExecutionException, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableUndefined, and apache::geode::client::CacheableFileName.
|
inlinestatic |
Factory method that creates the Serializable object that matches the type of value.
For customer defined derivations of Serializable, the method apache::geode::client::createValue may be overloaded. For pointer types (e.g. char*) the method apache::geode::client::createValueArr may be overloaded.
|
virtual |
return the Data Serialization Fixed ID type.
This is used to determine what instance type to create and deserialize into.
Note that this should not be overridden by custom implementations and is reserved only for builtin types.
Reimplemented in apache::geode::client::Struct, and apache::geode::client::CacheableUndefined.
|
pure virtual |
deserialize this object, typical implementation should return the 'this' pointer.
Implemented in apache::geode::client::PdxInstance, apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::RegionAttributes, apache::geode::client::Properties, apache::geode::client::Struct, apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >, apache::geode::client::CacheableEnum, apache::geode::client::CacheableDate, apache::geode::client::UserFunctionExecutionException, apache::geode::client::CacheableString, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableFileName, and apache::geode::client::CacheableUndefined.
|
virtual |
return the size in bytes of the instance being serialized.
This is used to determine whether the cache is using up more physical memory than it has been configured to use. The method can return zero if the user does not require the ability to control cache memory utilization. Note that you must implement this only if you use the HeapLRU feature.
Reimplemented in apache::geode::client::PdxInstance, apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::CacheableString, apache::geode::client::RegionAttributes, apache::geode::client::Properties, apache::geode::client::Struct, apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableDate, apache::geode::client::UserFunctionExecutionException, apache::geode::client::CacheableUndefined, and apache::geode::client::CacheableEnum.
|
inherited |
Atomically increment reference count.
|
inlineinherited |
|
static |
Register the PDX serializer which can handle serialization for instances of user domain classes.
|
static |
register an Pdx instance factory method for a given type.
IllegalStateException | if the typeName has already been registered, or there is an error in registering the type; check errno for more information in the latter case. |
|
static |
register an instance factory method for a given type.
During registration the factory will be invoked to extract the typeId to associate with this function.
IllegalStateException | if the typeId has already been registered, or there is an error in registering the type; check errno for more information in the latter case. |
|
inherited |
Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero.
|
pure virtual |
serialize this object
Implemented in apache::geode::client::PdxInstance, apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::RegionAttributes, apache::geode::client::Properties, apache::geode::client::Struct, apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >, apache::geode::client::CacheableEnum, apache::geode::client::CacheableDate, apache::geode::client::UserFunctionExecutionException, apache::geode::client::CacheableString, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableFileName, and apache::geode::client::CacheableUndefined.
|
virtual |
Display this object as 'string', which depends on the implementation in the subclasses.
The default implementation renders the classname.
The return value may be a temporary, so the caller has to ensure that the SharedPtr count does not go down to zero by storing the result in a variable or otherwise.
Reimplemented in apache::geode::client::PdxInstance, apache::geode::client::CacheableString, apache::geode::client::CacheableDate, apache::geode::client::CacheableEnum, and apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >.
|
virtual |
return the typeId byte of the instance being serialized.
This is used by deserialization to determine what instance type to create and deserialize into.
Note that this should not be overridden by custom implementations and is reserved only for builtin types.
Reimplemented in apache::geode::client::CacheableContainerType< TBase, TYPEID >, apache::geode::client::CacheableArrayType< TObj, TYPEID >, apache::geode::client::RegionAttributes, apache::geode::client::Properties, apache::geode::client::Struct, apache::geode::client::CacheableString, apache::geode::client::UserFunctionExecutionException, apache::geode::client::CacheableEnum, apache::geode::client::CacheableKeyType< TObj, TYPEID, TYPENAME, SPRINTFSYM, STRSIZE >, apache::geode::client::CacheableDate, apache::geode::client::CacheableObjectArray, apache::geode::client::CacheableUndefined, and apache::geode::client::CacheableFileName.