With ProtocolBuffers is very easy to serialize, stream multiple "messages".
Basically you just need to write one after another, same when you read the data, you don't need to know the length of every message.
It will be nice is flatbuffers (or the verifier) will tell how much data it's using from the buffer, this way we know where the next message starts.
With ProtocolBuffers is very easy to serialize, stream multiple "messages".
Basically you just need to write one after another, same when you read the data, you don't need to know the length of every message.
It will be nice is flatbuffers (or the verifier) will tell how much data it's using from the buffer, this way we know where the next message starts.