Home
last modified time | relevance | path

Searched refs:GreeterClient (Results 1 – 25 of 33) sorted by relevance

12

/third_party/grpc/examples/csharp/HelloworldUnity/Assets/Scripts/
DHelloworldGrpc.cs67 public partial class GreeterClient : grpc::ClientBase<GreeterClient> class in Helloworld.Greeter
71 public GreeterClient(grpc::Channel channel) : base(channel) in GreeterClient() method in Helloworld.Greeter.GreeterClient
76 public GreeterClient(grpc::CallInvoker callInvoker) : base(callInvoker) in GreeterClient() method in Helloworld.Greeter.GreeterClient
80 protected GreeterClient() : base() in GreeterClient() method in Helloworld.Greeter.GreeterClient
85 protected GreeterClient(ClientBaseConfiguration configuration) : base(configuration) in GreeterClient() method in Helloworld.Greeter.GreeterClient
134 protected override GreeterClient NewInstance(ClientBaseConfiguration configuration) in NewInstance()
136 return new GreeterClient(configuration); in NewInstance()
/third_party/grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/
DHelloworldGrpc.cs67 public partial class GreeterClient : grpc::ClientBase<GreeterClient> class in Helloworld.Greeter
71 public GreeterClient(grpc::Channel channel) : base(channel) in GreeterClient() method in Helloworld.Greeter.GreeterClient
76 public GreeterClient(grpc::CallInvoker callInvoker) : base(callInvoker) in GreeterClient() method in Helloworld.Greeter.GreeterClient
80 protected GreeterClient() : base() in GreeterClient() method in Helloworld.Greeter.GreeterClient
85 protected GreeterClient(ClientBaseConfiguration configuration) : base(configuration) in GreeterClient() method in Helloworld.Greeter.GreeterClient
134 protected override GreeterClient NewInstance(ClientBaseConfiguration configuration) in NewInstance()
136 return new GreeterClient(configuration); in NewInstance()
/third_party/grpc/examples/cpp/helloworld/
Dgreeter_async_client2.cc42 class GreeterClient { class
44 explicit GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
132 GreeterClient greeter(grpc::CreateChannel( in main()
136 std::thread thread_ = std::thread(&GreeterClient::AsyncCompleteRpc, &greeter); in main()
Dgreeter_async_client.cc41 class GreeterClient { class
43 explicit GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
114 GreeterClient greeter(grpc::CreateChannel( in main()
Dgreeter_client.cc38 class GreeterClient { class
40 GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
100 GreeterClient greeter(grpc::CreateChannel( in main()
/third_party/grpc/examples/cpp/load_balancing/
Dgreeter_client.cc39 class GreeterClient { class
41 GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
83 GreeterClient greeter(grpc::CreateCustomChannel( in main()
/third_party/grpc/examples/cpp/compression/
Dgreeter_client.cc39 class GreeterClient { class
41 GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
86 GreeterClient greeter(grpc::CreateCustomChannel( in main()
/third_party/flatbuffers/grpc/samples/greeter/
Dclient.cpp10 class GreeterClient { class
12 GreeterClient(std::shared_ptr<grpc::Channel> channel) in GreeterClient() function in GreeterClient
72 GreeterClient greeter(channel); in main()
/third_party/grpc/examples/csharp/Helloworld/GreeterClient/
DProgram.cs19 namespace GreeterClient namespace
27 var client = new Greeter.GreeterClient(channel); in Main()
/third_party/grpc/examples/csharp/HelloworldLegacyCsproj/GreeterClient/
DProgram.cs19 namespace GreeterClient namespace
27 var client = new Greeter.GreeterClient(channel); in Main()
/third_party/grpc/examples/csharp/Xds/GreeterClient/
DProgram.cs20 namespace GreeterClient namespace
40 var client = new Greeter.GreeterClient(channel); in RunClient()
/third_party/grpc/examples/csharp/Xds/
DGreeter.sln8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GreeterClient", "GreeterClient\GreeterClient.c…
/third_party/grpc/examples/android/helloworld/app/src/main/cpp/
Dgrpc-helloworld.cc73 class GreeterClient { class
75 GreeterClient(std::shared_ptr<Channel> channel) in GreeterClient() function in GreeterClient
122 GreeterClient greeter( in Java_io_grpc_helloworldexample_cpp_HelloworldActivity_sayHello()
/third_party/grpc/examples/csharp/HelloworldLegacyCsproj/
DGreeter.sln10 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GreeterClient", "GreeterClient\GreeterClient.c…
DREADME.md60 > cd GreeterClient/bin/Debug
61 > GreeterClient.exe
66 On Linux or Mac, use `mono GreeterServer.exe` and `mono GreeterClient.exe` to run the server and cl…
/third_party/grpc/examples/csharp/Helloworld/
DGreeter.sln8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GreeterClient", "GreeterClient\GreeterClient.c…
/third_party/flatbuffers/grpc/examples/ts/greeter/src/
Dclient.ts4 import { GreeterClient } from './greeter_grpc';
8 const _server = new GreeterClient(`localhost:${PORT}`, grpc.credentials.createInsecure());
Dgreeter_grpc.js56 exports.GreeterClient = grpc.makeGenericClientConstructor(GreeterService);
/third_party/flatbuffers/grpc/examples/go/greeter/client/
Dmain.go21 func printSayHello(client models.GreeterClient, name string) { argument
38 func printSayManyHello(client models.GreeterClient, name string) { argument
/third_party/flatbuffers/grpc/examples/go/greeter/models/
DGreeter_grpc.go16 type GreeterClient interface { interface
27 func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient {
/third_party/grpc/examples/node/static_codegen/
Dgreeter_client.js25 var client = new services.GreeterClient('localhost:50051',
Dhelloworld_grpc_pb.js61 exports.GreeterClient = grpc.makeGenericClientConstructor(GreeterService);
/third_party/grpc/examples/php/
Dgreeter_client.php29 $client = new Helloworld\GreeterClient($hostname, [
/third_party/grpc/test/distrib/csharp/DistribTest/
DProgram.cs43 var client = new Greeter.GreeterClient(channel); in Main()
/third_party/grpc/examples/csharp/HelloworldXamarin/iOS/
DViewController.cs68 var client = new Greeter.GreeterClient(channel); in SayHello()

12