Home
last modified time | relevance | path

Searched defs:ServerStreamingMethod (Results 1 – 6 of 6) sorted by relevance

/external/pigweed/pw_rpc/
Dserver_test.cc743 class ServerStreamingMethod : public BasicServer { class
745 ServerStreamingMethod() { in ServerStreamingMethod() function in pw::rpc::__anon10169d1d0111::ServerStreamingMethod
761 TEST_F(ServerStreamingMethod, ClientStream_InvalidArgumentError) { in TEST_F() argument
772 TEST_F(ServerStreamingMethod, ClientRequestedCompletion_CallsCallback) { in TEST_F() argument
786 TEST_F(ServerStreamingMethod, in TEST_F() argument
800 TEST_F(ServerStreamingMethod, ClientRequestedCompletion_ErrorWhenClosed) { in TEST_F() argument
808 TEST_F(ServerStreamingMethod, in TEST_F() argument
/external/grpc-grpc/examples/python/data_transmission/
Ddemo.proto62 rpc ServerStreamingMethod (Request) returns (stream Response); rpc
Ddemo_pb2_grpc.py66 def ServerStreamingMethod(self, request, context): member in GRPCDemoServicer
155 def ServerStreamingMethod(request, member in GRPCDemo
Dserver.py63 def ServerStreamingMethod(self, request, context): member in DemoServer
/external/pigweed/pw_rpc/public/pw_rpc/internal/
Dmethod_impl_tester.h204 constexpr MethodImpl ServerStreamingMethod( in ServerStreamingMethod() function
/external/grpc-grpc-java/stub/src/main/java/io/grpc/stub/
DServerCalls.java94 public interface ServerStreamingMethod<ReqT, RespT> extends UnaryRequestMethod<ReqT, RespT> { interface in ServerCalls