Home
last modified time | relevance | path

Searched refs:SayManyHellos (Results 1 – 17 of 17) sorted by relevance

/third_party/flatbuffers/grpc/examples/ts/greeter/src/
Dgreeter_grpc.d.ts10 SayManyHellos: IGreeterService_ISayManyHellos; property
37 SayManyHellos: grpc.handleServerStreamingCall<models_HelloRequest, models_HelloReply>; property
44SayManyHellos(request: models_HelloRequest, metadata: grpc.Metadata): grpc.ClientReadableStream<mo… method
45SayManyHellos(request: models_HelloRequest, options: Partial<grpc.CallOptions>): grpc.ClientReadab… method
52 …public SayManyHellos(request: models_HelloRequest, metadata: grpc.Metadata): grpc.ClientReadableSt…
53 …public SayManyHellos(request: models_HelloRequest, options: Partial<grpc.CallOptions>): grpc.Clien…
Dclient.ts19 const data = _server.SayManyHellos(buffer, null);
Dgreeter_grpc.js44 SayManyHellos: {
Dserver.ts18 async SayManyHellos(call: grpc.ServerWritableStream<HelloRequest>): Promise<void> { method in GreeterServer
/third_party/flatbuffers/grpc/examples/python/greeter/models/
Dgreeter_grpc_fb.py19 self.SayManyHellos = channel.unary_stream(
33 def SayManyHellos(self, request, context): member in GreeterServicer
46 servicer.SayManyHellos
/third_party/flatbuffers/grpc/examples/go/greeter/models/
DGreeter_grpc.go19 SayManyHellos(ctx context.Context, in *flatbuffers.Builder, methodSpec
41 func (c *greeterClient) SayManyHellos(ctx context.Context, in *flatbuffers.Builder, func
77 SayManyHellos(*HelloRequest, Greeter_SayManyHellosServer) error methodSpec
88 func (UnimplementedGreeterServer) SayManyHellos(*HelloRequest, Greeter_SayManyHellosServer) error { func
126 return srv.(GreeterServer).SayManyHellos(m, &greeterSayManyHellosServer{stream})
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/
Dgreeter.grpc.swift38 func SayManyHellos(
62 public func SayManyHellos(
105 …func SayManyHellos(request: Message<models_HelloRequest>, context: StreamingResponseCallContext<Me… in SayHello() function
128 userFunction: self.SayManyHellos(request:context:)) in SayHello()
/third_party/flatbuffers/grpc/samples/greeter/
Dclient.cpp37 void SayManyHellos(const std::string &name, int num_greetings, in SayManyHellos() function in GreeterClient
50 auto stream = stub_->SayManyHellos(&context, request_msg); in SayManyHellos()
80 greeter.SayManyHellos(name, num_greetings, [](const std::string &message) { in main()
Dgreeter.fbs16 SayManyHellos(ManyHellosRequest):HelloReply (streaming: "server");
Dserver.cpp41 virtual grpc::Status SayManyHellos( in SayManyHellos() function in GreeterServiceImpl
/third_party/flatbuffers/grpc/examples/
Dgreeter.fbs13 SayManyHellos(HelloRequest):HelloReply (streaming: "server");
/third_party/flatbuffers/grpc/examples/python/greeter/
Dclient.py20 greetings = stub.SayManyHellos(hello_request)
Dserver.py35 def SayManyHellos(self, request, context): member in GreeterServicer
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/server/
Dmain.swift46 func SayManyHellos(
/third_party/flatbuffers/grpc/examples/go/greeter/server/
Dmain.go39 func (s *greeterServer) SayManyHellos(request *models.HelloRequest, stream models.Greeter_SayManyHe… func
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/client/
Dmain.swift56 let call = greeter.SayManyHellos(Message(builder: &builder)) { message in in greet()
/third_party/flatbuffers/grpc/examples/go/greeter/client/
Dmain.go48 stream, err := client.SayManyHellos(ctx, b, grpc.CallContentSubtype("flatbuffers"))