Home
last modified time | relevance | path

Searched refs:disposeAction (Results 1 – 6 of 6) sorted by relevance

/third_party/grpc/src/csharp/Grpc.Core.Api/
DAsyncCallState.cs34 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()
DAsyncServerStreamingCall.cs45 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()
DAsyncUnaryCall.cs47 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()
DAsyncDuplexStreamingCall.cs49 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()
DAsyncClientStreamingCall.cs50 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/
DTestCalls.cs36 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()