Home
last modified time | relevance | path

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

/third_party/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);
/third_party/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
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/
Dgreeter.grpc.swift42 ) -> ServerStreamingCall<Message<models_HelloRequest>, Message<models_HelloReply>>
66 ) -> ServerStreamingCall<Message<models_HelloRequest>, Message<models_HelloReply>> {
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
Dmonster_test.grpc.swift42 ) -> ServerStreamingCall<Message<MyGame_Example_Stat>, Message<MyGame_Example_Monster>>
75 ) -> ServerStreamingCall<Message<MyGame_Example_Stat>, Message<MyGame_Example_Monster>> {
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DServerCalls.cs42 …public static IServerCallHandler ServerStreamingCall<TRequest, TResponse>(Method<TRequest, TRespon…
DServerServiceDefinitionExtensions.cs67 callHandlers.Add(method.FullName, ServerCalls.ServerStreamingCall(method, handler)); in AddMethod()
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DClientServerTest.cs209 public async Task ServerStreamingCall() in ServerStreamingCall() method in Grpc.Core.Tests.ClientServerTest