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

Kotlin gRPC implementation. HTTP/2 based RPC

Results 112 grpc-kotlin issues
Sort by recently updated
recently updated
newest added

Hello, Can some one please guide me to find an example for server interceptor in GRPC in Coroutine base impl.. It would be great, if we can have example for...

hey guys, I am trying to use gralde generateProtol to generate grpc kotlin code in intellij and it has been unsuccessful. the error message as below: > > Caching disabled...

documentation

See: https://github.com/GoogleCloudPlatform/kotlin-samples/issues/76

I'd like to use different HTTP/2 flow control options than the non-configurable one-at-a-time flow control in grpc-kotlin 1.0. My Android app commonly has intermittent connectivity due to its remote usage...

# Issue In [this guide](https://cloud.google.com/apis/design/errors) by Google, pre-defined message types be able to used for error-handling are introduced. Specifically, these message types are defined in `google/rpc/error_details.proto`. For example, `BadRequest` message...

After following the steps in the README.md file I am not able to generate the proto files from the command line ``` git clone [email protected]:grpc/grpc-kotlin.git cd grpc-kotlin/ ./gradlew build vi...

gradle: ``` plugins { id "org.jetbrains.kotlin.jvm" version "1.3.72" id "org.jetbrains.kotlin.plugin.spring" version "1.3.72" ... id 'com.google.protobuf' version '0.8.13' } protobuf { protoc { artifact = "com.google.protobuf:protoc:3.2.0" } generatedFilesBaseDir = "src/generated" plugins...

@jamesward has recently [added](https://github.com/grpc/grpc-kotlin/pull/187) an [example](https://github.com/grpc/grpc-kotlin/tree/master/examples/native-client) of GraalVM usage with a gRPC client. It would be awesome if we also had an example implementation of a gRPC server that runs...

enhancement

Currently CI is building and testing over Java 1.8 and 1.11, for example, see https://github.com/grpc/grpc-kotlin/pull/194/checks and the screenshot given below. Since **we're officially endorsing 1.7 as our min supported version...

I am attempting to install a default Exception handler for our gRPC server stubs. I have tried using both a java gRPC interceptor and coroutine exception handlers, but nothing seems...