Re: [grpc-io] RPC level flow control support in grpc for golang

2017-10-26 Thread Josh Humphries
Since Go's API is synchronous/blocking, I am pretty sure that sender always block until message is actually sent, which will respect HTTP/2 flow control windows. If you want an async API, where a sender can queue up messages even before the receiver can accept them, you could push them into a

[grpc-io] RPC level flow control support in grpc for golang

2017-10-25 Thread eldadru
Hi, Is it possible to perform manual flow control in the RPC call level in grpc-go? I'm looking for something like the flow control mechanism of the grpc library for java: https://github.com/grpc/grpc-java/tree/master/examples/src/main/java/io/grpc/examples/manualflowcontrol I would like my