Is there any documentation about how KotlinX RPC /...
# kotlinx-rpc
j
Is there any documentation about how KotlinX RPC / Ktor / kRPC actually communicates? I don't feel I can safely adopt KRPC unless I know I can connect an application in a different language to it and understand what I'm looking for in networking logs.
a
Hey! kRPC is intended as a Kotlin-to-Kotlin protocol, so its internals (wire format) are unstable and undocumented for now We also have gRPC support (pending KMP) if you need clarity on a wire level and a polyglot https://kotlin.github.io/kotlinx-rpc/grpc-configuration.html
j
Bummer. Thanks for the response!
j
KRPC is using websocket internally.
👌 1