Home
last modified time | relevance | path

Searched refs:AsyncUnaryCall (Results 1 – 25 of 28) sorted by relevance

12

/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs266 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Empty> EmptyCallAsync(global::Grpc.Testin… in EmptyCallAsync()
276 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Empty> EmptyCallAsync(global::Grpc.Testin… in EmptyCallAsync()
278 return CallInvoker.AsyncUnaryCall(__Method_EmptyCall, null, options, request); in EmptyCallAsync()
310 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> UnaryCallAsync(global::Gr… in UnaryCallAsync()
320 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> UnaryCallAsync(global::Gr… in UnaryCallAsync()
322 return CallInvoker.AsyncUnaryCall(__Method_UnaryCall, null, options, request); in UnaryCallAsync()
360 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> CacheableUnaryCallAsync(g… in CacheableUnaryCallAsync()
372 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> CacheableUnaryCallAsync(g… in CacheableUnaryCallAsync()
374 return CallInvoker.AsyncUnaryCall(__Method_CacheableUnaryCall, null, options, request); in CacheableUnaryCallAsync()
505 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Empty> UnimplementedCallAsync(global::Grp… in UnimplementedCallAsync()
[all …]
DWorkerServiceGrpc.cs248 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.CoreResponse> CoreCountAsync(global::Grpc… in CoreCountAsync()
258 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.CoreResponse> CoreCountAsync(global::Grpc… in CoreCountAsync()
260 return CallInvoker.AsyncUnaryCall(__Method_CoreCount, null, options, request); in CoreCountAsync()
292 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> QuitWorkerAsync(global::Grpc.Testin… in QuitWorkerAsync()
302 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> QuitWorkerAsync(global::Grpc.Testin… in QuitWorkerAsync()
304 return CallInvoker.AsyncUnaryCall(__Method_QuitWorker, null, options, request); in QuitWorkerAsync()
DReportQpsScenarioServiceGrpc.cs117 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> ReportScenarioAsync(global::Grpc.Te… in ReportScenarioAsync()
127 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.Void> ReportScenarioAsync(global::Grpc.Te… in ReportScenarioAsync()
129 return CallInvoker.AsyncUnaryCall(__Method_ReportScenario, null, options, request); in ReportScenarioAsync()
DMetricsGrpc.cs166 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.GaugeResponse> GetGaugeAsync(global::Grpc… in GetGaugeAsync()
176 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.GaugeResponse> GetGaugeAsync(global::Grpc… in GetGaugeAsync()
178 return CallInvoker.AsyncUnaryCall(__Method_GetGauge, null, options, request); in GetGaugeAsync()
DBenchmarkServiceGrpc.cs201 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> UnaryCallAsync(global::Gr… in UnaryCallAsync()
212 …public virtual grpc::AsyncUnaryCall<global::Grpc.Testing.SimpleResponse> UnaryCallAsync(global::Gr… in UnaryCallAsync()
214 return CallInvoker.AsyncUnaryCall(__Method_UnaryCall, null, options, request); in UnaryCallAsync()
/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
DInterceptingCallInvoker.cs57 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TRe… in AsyncUnaryCall() method in Grpc.Core.Interceptors.InterceptingCallInvoker
59 return interceptor.AsyncUnaryCall( in AsyncUnaryCall()
62 (req, ctx) => invoker.AsyncUnaryCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncUnaryCall()
DInterceptor.cs78 …public delegate AsyncUnaryCall<TResponse> AsyncUnaryCallContinuation<TRequest, TResponse>(TRequest…
204 …public virtual AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(TRequest request, Cli…
DCallInvokerExtensions.cs122 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(TRequest request, Cl… in AsyncUnaryCall() method in Grpc.Core.Interceptors.CallInvokerExtensions.MetadataInterceptor
/external/grpc-grpc/src/csharp/Grpc.Core.Testing/
DTestCalls.cs34 public static AsyncUnaryCall<TResponse> AsyncUnaryCall<TResponse> ( in AsyncUnaryCall() method in Grpc.Core.Testing.TestCalls
38 …return new AsyncUnaryCall<TResponse>(responseAsync, responseHeadersAsync, getStatusFunc, getTraile… in AsyncUnaryCall()
/external/grpc-grpc/src/csharp/Grpc.Core/
DDefaultCallInvoker.cs53 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TRe… in AsyncUnaryCall() method in Grpc.Core.DefaultCallInvoker
56 return Calls.AsyncUnaryCall(call, request); in AsyncUnaryCall()
DCalls.cs56 …public static AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(CallInvocationDetails<…
62 …return new AsyncUnaryCall<TResponse>(asyncResult, asyncCall.ResponseHeadersAsync, asyncCall.GetSta…
DAsyncUnaryCall.cs29 public sealed class AsyncUnaryCall<TResponse> : IDisposable class
46 public AsyncUnaryCall(Task<TResponse> responseAsync, in AsyncUnaryCall() method in Grpc.Core.AsyncUnaryCall
DCallInvoker.cs40 …public abstract AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TRe…
DClientBase.cs177 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(TRequest request, Cl… in AsyncUnaryCall() method in Grpc.Core.ClientBase.ClientBaseConfiguration.ClientBaseConfigurationInterceptor
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DClientServerTest.cs67 Assert.AreEqual("ABC", await Calls.AsyncUnaryCall(helper.CreateUnaryCall(), "ABC")); in UnaryCall()
81 …var ex2 = Assert.ThrowsAsync<RpcException>(async () => await Calls.AsyncUnaryCall(helper.CreateUna… in UnaryCall_ServerHandlerThrows()
97 …var ex2 = Assert.ThrowsAsync<RpcException>(async () => await Calls.AsyncUnaryCall(helper.CreateUna… in UnaryCall_ServerHandlerThrowsRpcException()
117 …var ex2 = Assert.ThrowsAsync<RpcException>(async () => await Calls.AsyncUnaryCall(helper.CreateUna… in UnaryCall_ServerHandlerThrowsRpcExceptionWithTrailers()
137 …var ex2 = Assert.ThrowsAsync<RpcException>(async () => await Calls.AsyncUnaryCall(helper.CreateUna… in UnaryCall_ServerHandlerSetsStatus()
158 …var ex2 = Assert.ThrowsAsync<RpcException>(async () => await Calls.AsyncUnaryCall(helper.CreateUna… in UnaryCall_ServerHandlerSetsStatusAndTrailers()
295 … var call = Calls.AsyncUnaryCall(helper.CreateUnaryCall(new CallOptions(headers: headers)), "ABC"); in AsyncUnaryCall_EchoMetadata()
DContextPropagationTest.cs80 await Calls.AsyncUnaryCall(helper.CreateUnaryCall(callOptions), "xyz"); in PropagateCancellation()
127 return await Calls.AsyncUnaryCall(helper.CreateUnaryCall(callOptions), "xyz"); in PropagateDeadline()
149 return await Calls.AsyncUnaryCall(helper.CreateUnaryCall(callOptions), "xyz"); in SuppressDeadlinePropagation()
DThreadingModelTest.cs89 await Calls.AsyncUnaryCall(helper.CreateUnaryCall(), "ABC"); in ContinuationDoesNotRunOnGrpcThread()
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/Greeter/
DHelloworldGrpc.cs118 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
128 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
130 return CallInvoker.AsyncUnaryCall(__Method_SayHello, null, options, request); in SayHelloAsync()
/external/grpc-grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/
DHelloworldGrpc.cs119 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
129 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
131 return CallInvoker.AsyncUnaryCall(__Method_SayHello, null, options, request); in SayHelloAsync()
/external/grpc-grpc/examples/csharp/Helloworld/Greeter/
DHelloworldGrpc.cs118 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
128 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
130 return CallInvoker.AsyncUnaryCall(__Method_SayHello, null, options, request); in SayHelloAsync()
/external/grpc-grpc/src/csharp/Grpc.HealthCheck/
DHealthGrpc.cs90 …public virtual grpc::AsyncUnaryCall<global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global:… in CheckAsync()
94 …public virtual grpc::AsyncUnaryCall<global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global:… in CheckAsync()
96 return CallInvoker.AsyncUnaryCall(__Method_Check, null, options, request); in CheckAsync()
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DUnimplementedCallInvoker.cs40 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TRe… in AsyncUnaryCall() method in Grpc.Core.Internal.UnimplementedCallInvoker
/external/grpc-grpc/src/csharp/Grpc.Examples/
DMathGrpc.cs183 …public virtual grpc::AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, … in DivAsync()
194 …public virtual grpc::AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, … in DivAsync()
196 return CallInvoker.AsyncUnaryCall(__Method_Div, null, options, request); in DivAsync()
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
DRouteGuideGrpc.cs208 …public virtual grpc::AsyncUnaryCall<global::Routeguide.Feature> GetFeatureAsync(global::Routeguide… in GetFeatureAsync()
223 …public virtual grpc::AsyncUnaryCall<global::Routeguide.Feature> GetFeatureAsync(global::Routeguide… in GetFeatureAsync()
225 return CallInvoker.AsyncUnaryCall(__Method_GetFeature, null, options, request); in GetFeatureAsync()
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/
DClientInterceptorTest.cs148 …public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(TRequest request, Cl… in AsyncUnaryCall() method in Grpc.Core.Interceptors.Tests.ClientInterceptorTest.CallbackInterceptor

12