Hi folks
I am referring to this definition -
/// 1. static Status Serialize(const Message& msg,
/// ByteBuffer* buffer,
/// bool* own_buffer);
Are the memory-regions referred to by slices in 'buffer' (output of Serialize) read-only for rest of gRPC stack? Otherwise my impl of Serialize() would have to copy these memory regions and then create slices & resulting byte-buffer. I want to avoid copy-ing these memory-regions.
Thanks
Mayank