grpc-kotlin
grpc-kotlin copied to clipboard
Kotlin gRPC implementation. HTTP/2 based RPC
What I needed at least was something more minimal that showed off the project structure that makes sense for a server and client stub. This has lots of dependent modules...
When using fromThrowable for unknown exceptions, we are recursively looking for a StatusException or StatusRuntimeException and returning the status of an inner exception. This isn't really the correct behavior because...
Hi. Would you be able to assist me in the following error inside IntelliJ? Anytime I generate kotlin files from the _proto_ ones I end up with an erroneous generated...
This is now the recommended name to use (https://github.com/bazelbuild/rules_kotlin/issues/1065), and not using it means anyone using the new name has to declare an alias to avoid grpc-kotlin loading its own...
Building with Jetpack Compose and following this example: https://github.com/grpc/grpc-kotlin/blob/master/examples/stub/build.gradle.kts, I have tried to generate kotlin/java from proto declarations but it seems no output file is generated. I cannot find output...
Can we change the relevant part to public? Although it would be a advanced use, we may want to reference `COROUTINE_CONTEXT_KEY`. In my product, I use this [issue method](https://github.com/grpc/grpc-kotlin/issues/223#issuecomment-1145153547) to...
Hi, we have a gRPC server built with `grpc-kotlin` library and kotlin coroutines. The service exposes a one method that underneath calls Redis database. We decided to override default executor...
I write a protobuf compiler (https://github.com/open-toast/protokt) for the JVM that I want to "play nicely" with `grpc-kotlin`. Right now I accomplish this by choosing the package of generated classes to...
grpc-java 1.58.0 added a documentation example[^1] for how to transparently construct and send a response message with a pre-serialized `byte[]` (`ByteArray`) payload. (Without deserializing to the corresponding protobuf type first,...
The error I get: ``` io.grpc.ManagedChannelRegistry$ProviderNotFoundException: io.grpc.okhttp.OkHttpChannelProvider: Unable to load private key: Neither RSA nor EC worked ``` I am trying to load pass the certificate as a string instead...