Library: RemotingNG
Package: Serialization
Header: Poco/RemotingNG/TypeSerializer.h
TypeSerializer is used to serialize the content of a variable for transportation over the network.
The default TypeSerializer template simply forwards serialize() calls to a Serializer. This means that serializaation using the default template only works for types directly supported by Serializer.
Serialization of complex types can be done by providing specializations of the TypeSerializer class template.
Member Functions: serialize
~TypeSerializer();
static void serialize(
const std::string & elem,
const T & value,
Serializer & ser
);