Hey, some time ago I got curious about whether gRPC would be something suitable for sending files over the wire. One of its goodness is the native support of streams, so, why wouldn’t it be? A service and a message To get the idea going, I took the approach of defining a minimum viable service, one that takes some chunks and then, once received, counts how many bytes of the actual content has been received. These chunks were defined like the following: messageChunk{bytesContent=1;} As the s...