What is base-rpc-grpc-inproc and when to use it
mainThe base-rpc-grpc-inproc package provides a specialized gRPC client channel implementation called InProcTransport.
This implementation is designed for scenarios where the RPC client and the RPC server reside within the same process. By using InProcTransport instead of standard network-based gRPC transport, you can achieve significantly higher efficiency for in-process communication by bypassing the network stack.