Changes between Version 7 and Version 8 of Documentation/DevelopmentCenter/UsePersistence
- Timestamp:
- 10/05/20 10:56:43 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/UsePersistence
v7 v8 48 48 }}} 49 49 50 == Support for Other Classes ==51 * An `IPrimitiveSerializer` directly transforms an object and its components into serialized form. This is mainly used for primitive types such as int or float.52 * An `ICompositeSerializer` does not directly transform an object into serialized form but decomposes it into other objects that can then be used to recompose the same object.53 50 54 == Other Formats == 55 You can use the core persistence components to generate other formats. This is done through a stream of serialization tokens. The `Serializer` and `Deserializer` use classes of type `ISerializationToken` to talk to the back end. They describes a hierarchical format of composites that can contain other composites, primitives or references. Additionally, type information is conveyed in type information tokens. 51 For further information you are refered to the [https://github.com/heal-research/HEAL.Attic/tree/master/docs documentation of HEAL.Attic].