To marc or anyone who's experienced in protobuf-net:
I have an architecture where the server holds life-long persistent connections to clients (over TCP). Because the connection layer/server should have high uptime, it only de-serializes messages and passes them to app server/layer. It contains no biz logic itself.
clients -> connection layer (deserialization) -> app layer (business logic)
Problem is that while I can now make changes to the biz logic, I can NOT change the model shared by the app layer and clients, because the connection layer relies on the model for de-serialization.
Is there any way to have the connection layer only PARTIALLY deserialize the messages to a base class, for forwarding/routing purposes?
Otherwise, I guess I'll have to create a binary field within the base class that is passed on as is and gets deserialized by the app layer. One stage serialization, two stage de-serialization.
EDIT: fleshed out
class Message
{
User user;
// not much else in here, potentially routing information
}
class RequestType1: Message
{
// lots of fields
// which are specific to this type of request/reply
}
class RequestType2: Message
{
}
The connection layer should not care about the structure of specific request types. That way I can change them at will, as long as both the client and app layer agree. But currently the connection layer does the deserialization so it DOES need to know the model, and any changes force me to restart the connection server.
I just need it to deserialize enough to route, which means 'user information' + 'subtype name/number'.