-
Notifications
You must be signed in to change notification settings - Fork 437
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
Unary calls cannot be canceled #252
Comments
virtuald
added a commit
to virtuald/ts-protoc-gen
that referenced
this issue
Oct 15, 2018
virtuald
added a commit
to virtuald/ts-protoc-gen
that referenced
this issue
Oct 16, 2018
jonnyreeves
pushed a commit
to improbable-eng/ts-protoc-gen
that referenced
this issue
Oct 16, 2018
* Allow canceling unary calls - Fixes improbable-eng/grpc-web#252 * Update examples
Fixed in improbable-eng/ts-protoc-gen#124 |
chrisgervang
pushed a commit
to chrisgervang/flowtype-protoc-gen
that referenced
this issue
Nov 14, 2018
* Allow canceling unary calls - Fixes improbable-eng/grpc-web#252 * Update examples
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems the underlying unary method returns an object with a close function, but the generated code for unary functions in
*_pb_service.js
don't have return values.unary function: https://github.com/improbable-eng/grpc-web/blob/master/ts/src/unary.ts#L62
Generated code: https://github.com/improbable-eng/grpc-web/blob/master/example/ts/_proto/examplecom/library/book_service_pb_service.js#L57
The text was updated successfully, but these errors were encountered: