Home
last modified time | relevance | path

Searched refs:ClientStreamingCall (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc/src/php/tests/unit_tests/
DCallInvokerTest.php99 public function ClientStreamingCall($channel, $method, $deserialize, $options) { function in CallInvokerUpdateChannel
100 return new ClientStreamingCall($channel, $method, $deserialize, $options);
129 public function ClientStreamingCall($channel, $method, $deserialize, $options) { function in CallInvokerChangeRequest
130 return new ClientStreamingCall($channel, $method, $deserialize, $options);
/external/grpc-grpc/src/php/lib/Grpc/
DDefaultCallInvoker.php35 public function ClientStreamingCall($channel, $method, $deserialize, $options) { function in Grpc\\DefaultCallInvoker
36 return new ClientStreamingCall($channel, $method, $deserialize, $options);
DCallInvoker.php30 public function ClientStreamingCall($channel, $method, $deserialize, $options); function
DClientStreamingCall.php26 class ClientStreamingCall extends AbstractCall class
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DServerCalls.cs35 …public static IServerCallHandler ClientStreamingCall<TRequest, TResponse>(Method<TRequest, TRespon…
/external/grpc-grpc/src/csharp/Grpc.Core/
DServerServiceDefinition.cs106 callHandlers.Add(method.FullName, ServerCalls.ClientStreamingCall(method, handler)); in callHandlers.Add()
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DClientServerTest.cs166 public async Task ClientStreamingCall() in ClientStreamingCall() method in Grpc.Core.Tests.ClientServerTest