-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flow control support #3
Comments
@pmlopes I've started to implement flow-control for gRPC streams I need your help on this feature as there is a timing issue when the The failing test to look at is |
It looks to me that in the case of an |
The order of creation is a bit locked to the underlying API but I'll see if we can fix it. |
@vietj the private static <ReqT, RespT> StreamObserver<ReqT> asyncStreamingRequestCall(ClientCall<ReqT, RespT> call, StreamObserver<RespT> responseObserver, boolean streamingResponse) {
ClientCalls.CallToStreamObserverAdapter<ReqT> adapter = new ClientCalls.CallToStreamObserverAdapter(call);
startCall(call, new ClientCalls.StreamObserverToCallListenerAdapter(call, responseObserver, adapter, streamingResponse), streamingResponse);
return adapter;
} And then the class Also the transformation from pure |
Will be available in 3.5 ? |
not an active area of development right now... |
@vietj Do you need any help to resolve this issue? |
any contribution would be valuable |
Is there any update on this? or any known workarounds? |
No description provided.
The text was updated successfully, but these errors were encountered: