Monday, June 20, 2016

Serialization and DeSerialization

The process of converting an object into stream of bytes in order to persist the data to memory, a database or a file.
It save the state of an object in order to be able to recreate when needed.

When an object is serialized into stream, it does not just the data, but also information about the object’s type. DeSerialization is reverse process of Serialization.

No comments:

Post a Comment