(ctx context.Context, req *jsonrpc.Request)
| 925 | } |
| 926 | |
| 927 | func (cs *ClientSession) handle(ctx context.Context, req *jsonrpc.Request) (any, error) { |
| 928 | if req.IsCall() { |
| 929 | jsonrpc2.Async(ctx) |
| 930 | } |
| 931 | return handleReceive(ctx, cs, req) |
| 932 | } |
| 933 | |
| 934 | func (cs *ClientSession) sendingMethodHandler() MethodHandler { |
| 935 | cs.client.mu.Lock() |
nothing calls this directly
no test coverage detected