Home
last modified time | relevance | path

Searched refs:ServerStreamingCall (Results 1 – 8 of 8) sorted by relevance

/external/grpc-grpc/src/php/tests/unit_tests/
DCallInvokerTest.php103 public function ServerStreamingCall($channel, $method, $deserialize, $options) { function in CallInvokerUpdateChannel
104 return new ServerStreamingCall($channel, $method, $deserialize, $options);
133 public function ServerStreamingCall($channel, $method, $deserialize, $options) { function in CallInvokerChangeRequest
134 return new ServerStreamingCall($channel, $method, $deserialize, $options);
/external/grpc-grpc/src/php/lib/Grpc/
DDefaultCallInvoker.php39 public function ServerStreamingCall($channel, $method, $deserialize, $options) { function in Grpc\\DefaultCallInvoker
40 return new ServerStreamingCall($channel, $method, $deserialize, $options);
DCallInvoker.php31 public function ServerStreamingCall($channel, $method, $deserialize, $options); function
DServerStreamingCall.php26 class ServerStreamingCall extends AbstractCall class
/external/flatbuffers/tests/FlatBuffers.GRPC.Swift/Sources/Model/
Dgreeter.grpc.swift25 …CallOptions?, handler: @escaping (Message<HelloReply>) -> Void) -> ServerStreamingCall<Message<Man… in SayHello()
41 …tions? = nil, handler: @escaping (Message<HelloReply>) -> Void) -> ServerStreamingCall<Message<Man… in SayHello()
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DServerCalls.cs42 …public static IServerCallHandler ServerStreamingCall<TRequest, TResponse>(Method<TRequest, TRespon…
/external/grpc-grpc/src/csharp/Grpc.Core/
DServerServiceDefinition.cs124 callHandlers.Add(method.FullName, ServerCalls.ServerStreamingCall(method, handler)); in callHandlers.Add()
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DClientServerTest.cs189 public async Task ServerStreamingCall() in ServerStreamingCall() method in Grpc.Core.Tests.ClientServerTest