Re: [grpc-io] Handle multi-client streaming on the server

2018-08-05 Thread Josh Humphries
Streams from multiple clients do not get intermingled. The server handler is invoked for each stream, and the handler gets a reference to the stream, for consuming events from just that one client. Also, a single client's requests always arrive in order. gRPC is built on top of TCP, which handles

[grpc-io] Handle multi-client streaming on the server

2018-08-04 Thread tyczj359
I am setting up a grpc service that will upload images in chunks to the server. What I am trying to understand in trying to setup the server logic is how the grpc service handles multiple clients streaming at the same time. I assume that streaming events will collide meaning client 1 starts