D | InterceptingCallInvoker.cs | 30 readonly CallInvoker invoker; field in Grpc.Core.Interceptors.InterceptingCallInvoker 37 public InterceptingCallInvoker(CallInvoker invoker, Interceptor interceptor) in InterceptingCallInvoker() argument 39 this.invoker = GrpcPreconditions.CheckNotNull(invoker, nameof(invoker)); in InterceptingCallInvoker() 51 (req, ctx) => invoker.BlockingUnaryCall(ctx.Method, ctx.Host, ctx.Options, req)); in BlockingUnaryCall() 62 (req, ctx) => invoker.AsyncUnaryCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncUnaryCall() 73 … (req, ctx) => invoker.AsyncServerStreamingCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncServerStreamingCall() 83 ctx => invoker.AsyncClientStreamingCall(ctx.Method, ctx.Host, ctx.Options)); in AsyncClientStreamingCall() 93 ctx => invoker.AsyncDuplexStreamingCall(ctx.Method, ctx.Host, ctx.Options)); in AsyncDuplexStreamingCall()
|