Inheritance diagram for PickleWriter:
Public Member Functions | |
this (IBuffer buffer) | |
PickleWriter | freeze (IPickle object) |
|
Construct a PickleWriter upon the given buffer. As Objects are serialized, their content is written to this buffer. The buffer content is then typically flushed to some external conduit, such as a file or socket. Note that serialized data is always in Network order. Reimplemented in ProtocolWriter. Definition at line 70 of file PickleWriter.d. |
|
Serialize an Object. Objects are written in Network-order, and are prefixed by the guid exposed via the IPickle interface. This guid is used to identify the appropriate factory when reconstructing the instance. Definition at line 84 of file PickleWriter.d. References IPickle::getGuid(), and IWritable::write(). Referenced by VirtualCache::put(), and testClassSerialization(). |