/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | AsyncCallState.cs | 34 readonly object disposeAction; // Action or Action<object> field 41 Action<object> disposeAction, in AsyncCallState() 47 this.disposeAction = disposeAction; in AsyncCallState() 55 Action disposeAction) in AsyncCallState() 60 this.disposeAction = disposeAction; in AsyncCallState() 87 var withState = disposeAction as Action<object>; in Dispose() 94 ((Action)disposeAction)(); in Dispose()
|
D | AsyncServerStreamingCall.cs | 45 Action disposeAction) in AsyncServerStreamingCall() argument 48 …allState = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncServerStreamingCall() 64 Action<object> disposeAction, in AsyncServerStreamingCall() argument 68 …e = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction, state); in AsyncServerStreamingCall()
|
D | AsyncUnaryCall.cs | 47 Action disposeAction) in AsyncUnaryCall() argument 50 …allState = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncUnaryCall() 66 Action<object> disposeAction, in AsyncUnaryCall() argument 70 …e = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction, state); in AsyncUnaryCall()
|
D | AsyncDuplexStreamingCall.cs | 49 Action disposeAction) in AsyncDuplexStreamingCall() argument 53 …allState = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncDuplexStreamingCall() 71 Action<object> disposeAction, in AsyncDuplexStreamingCall() argument 76 …e = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction, state); in AsyncDuplexStreamingCall()
|
D | AsyncClientStreamingCall.cs | 50 Action disposeAction) in AsyncClientStreamingCall() argument 54 …allState = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncClientStreamingCall() 72 Action<object> disposeAction, in AsyncClientStreamingCall() argument 77 …e = new AsyncCallState(responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction, state); in AsyncClientStreamingCall()
|
/third_party/grpc/src/csharp/Grpc.Core.Testing/ |
D | TestCalls.cs | 36 Func<Metadata> getTrailersFunc, Action disposeAction) in AsyncUnaryCall() argument 38 …all<TResponse>(responseAsync, responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncUnaryCall() 48 Func<Metadata> getTrailersFunc, Action disposeAction) in AsyncClientStreamingCall() argument 50 …requestStream, responseAsync, responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncClientStreamingCall() 59 Func<Status> getStatusFunc, Func<Metadata> getTrailersFunc, Action disposeAction) in AsyncServerStreamingCall() argument 61 …ll<TResponse>(responseStream, responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncServerStreamingCall() 71 Func<Metadata> getTrailersFunc, Action disposeAction) in AsyncDuplexStreamingCall() argument 73 …equestStream, responseStream, responseHeadersAsync, getStatusFunc, getTrailersFunc, disposeAction); in AsyncDuplexStreamingCall()
|