I'm using Boost.MPI to exchange messages between processes. Each message carries one of my classes, serialized using Boost.Serialization. I also use the same serialization code to save that class to a file. What I need to send over MPI is smaller than what I need to save to a file (fewer relevant members). I was thinking that it would be nice to use the class versioning, supported by the Serialization library, to tell Boost.MPI to send the non-default version of the class, but I can't seem to find a way to do so. Do you know if this is possible?
|
feedback
|
|
It is not possible to serialize two different versions of the same type in the same binary module. The reason is that the version used is a compile time constant specified using the What you could try is to implement specializations of the serialization member function for your type for specific archive types:
Similarily, you could provide overloads when using the split load/save serialization functions. | |||||
feedback
|