grpc-kotlin icon indicating copy to clipboard operation
grpc-kotlin copied to clipboard

Kotlin gRPC implementation. HTTP/2 based RPC

Results 125 grpc-kotlin issues
Sort by recently updated
recently updated
newest added
trafficstars

We experienced an issue with streaming responses. When we have multiple active requests and one of the requests is cancelled by the client, then all other requests are also closed....

https://github.com/grpc/grpc-kotlin/blob/a969a91ca37867fa28d83fca234a2b4ced7b1540/stub/src/main/java/io/grpc/kotlin/ClientCalls.kt#L295 In the current implementation of `ClientCalls.onClose()`, when a response from the server is not `isOk` and the exception is not a `CancellationException`, it forcibly converts any exception to `StatusException`...

Hello! We are using this dependency along with [gRPC java](https://github.com/grpc/grpc-java) to generate our gRPC interface. We've implemented it in a similar fashion as the example provided in this repo. However,...

I wrote some automation that builds .proto files into GRPC clients in different languages. I just noticed that `kt_jvm_grpc_library` fails if the .proto file does not happen to contain a...