/third_party/flatbuffers/grpc/examples/ts/greeter/src/ |
D | greeter_grpc.d.ts | 10 SayManyHellos: IGreeterService_ISayManyHellos; property 37 SayManyHellos: grpc.handleServerStreamingCall<models_HelloRequest, models_HelloReply>; property 44 …SayManyHellos(request: models_HelloRequest, metadata: grpc.Metadata): grpc.ClientReadableStream<mo… method 45 …SayManyHellos(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…
|
D | client.ts | 19 const data = _server.SayManyHellos(buffer, null);
|
D | greeter_grpc.js | 44 SayManyHellos: {
|
D | server.ts | 18 async SayManyHellos(call: grpc.ServerWritableStream<HelloRequest>): Promise<void> { method in GreeterServer
|
/third_party/flatbuffers/grpc/examples/python/greeter/models/ |
D | greeter_grpc_fb.py | 19 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/ |
D | Greeter_grpc.go | 19 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/ |
D | greeter.grpc.swift | 38 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/ |
D | client.cpp | 37 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()
|
D | greeter.fbs | 16 SayManyHellos(ManyHellosRequest):HelloReply (streaming: "server");
|
D | server.cpp | 41 virtual grpc::Status SayManyHellos( in SayManyHellos() function in GreeterServiceImpl
|
/third_party/flatbuffers/grpc/examples/ |
D | greeter.fbs | 13 SayManyHellos(HelloRequest):HelloReply (streaming: "server");
|
/third_party/flatbuffers/grpc/examples/python/greeter/ |
D | client.py | 20 greetings = stub.SayManyHellos(hello_request)
|
D | server.py | 35 def SayManyHellos(self, request, context): member in GreeterServicer
|
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/server/ |
D | main.swift | 46 func SayManyHellos(
|
/third_party/flatbuffers/grpc/examples/go/greeter/server/ |
D | main.go | 39 func (s *greeterServer) SayManyHellos(request *models.HelloRequest, stream models.Greeter_SayManyHe… func
|
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/client/ |
D | main.swift | 56 let call = greeter.SayManyHellos(Message(builder: &builder)) { message in in greet()
|
/third_party/flatbuffers/grpc/examples/go/greeter/client/ |
D | main.go | 48 stream, err := client.SayManyHellos(ctx, b, grpc.CallContentSubtype("flatbuffers"))
|