[View]
[Edit]
[Lock]
[References]
[Attachments]
[History]
[Home]
[Changes]
[Search]
[Help]
[sharing] Details on how are objects encoded & decoded
Note that it is not required to know how is done to use the framework.
Skip to next section of this page if you want to start using the framework
ENCODING
- In source system
Instantiate a Stringifier
[optional] Configure the Stringifier instance
event handlers
send/store mechanism
stringify the object
obtain the map from the object
serialize the map to a literal string
returns the literal string
the literal string can be transferred to target device or stored in a file
DECODING
- In target system
obtain a literal string to be converted in anObject
the literal string can be read from file or from another device (remote server)
Instantiate an Importer
[optional]Configure the Importer instance
event handlers
parsing mechanism
parse the string literal
Parse literal to (native)map
unmap literal to anObject
returns the object