Compact serialization config.
Defines Custom serializers.
Defines IdentifiedDataSerializableFactory serialization factories.
Defines how the number type is represented on the cluster side. By default, it is serialized as double.
This option can be one of the following case-insensitive strings.
byte(8-bit signed integer)short(16-bit signed integer)integer(32-bit signed integer)float(single-precision 32-bit IEEE 754 floating point)double(double-precision 64-bit IEEE 754 floating point)long(64-bit integer from long.js library)Note:
byte, for array of numbers you need to use Buffer instead of regular arrays.long, you need to use Long objects for array of numbers or a single number.Defines the global serializer. This serializer is registered as a fallback serializer to handle all other objects if a serializer cannot be located for them.
Defines if big-endian is used as the byte order for the serialization. By default, set to true.
Defines JSON deserialization policy. By default, set to eager.
Defines Portable serialization factories.
Defines portable version number. By default, set to 0.
Generated using TypeDoc
User-defined serialization config for the client.