![]() |
Hazelcast C++ Client
Hazelcast C++ Client Library
|
SerializationConfig is used to. More...
#include <serialization_config.h>
Public Member Functions | |
serialization_config () | |
Constructor default value of version is zero. | |
int | get_portable_version () const |
Portable version will be used to differentiate two same class that have changes on it , like adding/removing field or changing a type of a field. More... | |
serialization_config & | set_portable_version (int v) |
std::shared_ptr< serialization::global_serializer > | get_global_serializer () const |
serialization_config & | set_global_serializer (const std::shared_ptr< serialization::global_serializer > &global_serializer) |
serialization_config & | set_byte_order (boost::endian::order byte_order) |
boost::endian::order | get_byte_order () const |
SerializationConfig is used to.
Definition at line 38 of file serialization_config.h.
boost::endian::order hazelcast::client::serialization_config::get_byte_order | ( | ) | const |
Definition at line 84 of file config.cpp.
int hazelcast::client::serialization_config::get_portable_version | ( | ) | const |
Portable version will be used to differentiate two same class that have changes on it , like adding/removing field or changing a type of a field.
Definition at line 60 of file config.cpp.
serialization_config & hazelcast::client::serialization_config::set_byte_order | ( | boost::endian::order | byte_order | ) |
byte_order | that the serialization will use |
Definition at line 79 of file config.cpp.
serialization_config & hazelcast::client::serialization_config::set_global_serializer | ( | const std::shared_ptr< serialization::global_serializer > & | global_serializer | ) |
global_serializer | the serializer to be used when no other serialization can be found for an object |
Definition at line 73 of file config.cpp.
serialization_config & hazelcast::client::serialization_config::set_portable_version | ( | int | v | ) |
v | The default portable version to be used. |
Definition at line 64 of file config.cpp.