Hi folks, is there any way to integrate gRPC with ...
# ktor
r
Hi folks, is there any way to integrate gRPC with Ktor without using kotlinx.rpc? I'd like to do some proxying and re-routing, ideally using Ktor, so just defining services isn't enough - I need to be able to receive a gRPC request and route it to services (or another gRPC call) myself, using something like
ServerInterceptor
. Lacking that, is the source for kotlinx.rpc's gRPC integration available anywhere so I could see how it was done?
y
You can check the kotlin section in grpc official documentation: https://grpc.io/docs/languages/kotlin/