Sunday, September 11, 2016

Marshalling vs Serialization

Serialization
When you serialize an object, only the member data within that object is written to the byte stream; not the code that actually implements the object.

Marshalling
When you marshall an Object along with the member data,code base is available
i.e functions of the object..it'll have the function implementation so that using the methods the data can be operated upon

No comments:

Post a Comment