| /tonic/interop/ |
| H A D | update_binaries.sh | 16 git clone https://github.com/grpc/grpc-go.git 19 cd grpc-go 33 rm -rf ../grpc-go
|
| /tonic/interop/proto/grpc/testing/ |
| H A D | test.proto | 23 package grpc.testing; 29 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); 64 rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); 71 rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); 76 rpc Start(grpc.testing.ReconnectParams) returns (grpc.testing.Empty); 77 rpc Stop(grpc.testing.Empty) returns (grpc.testing.ReconnectInfo);
|
| H A D | empty.proto | 17 package grpc.testing; 24 // rpc Bar (grpc.testing.Empty) returns (grpc.testing.Empty) { };
|
| H A D | messages.proto | 19 package grpc.testing; 22 // https://github.com/grpc/grpc/issues/6980 has been fixed. 45 // A protobuf representation for grpc status. This is used by test
|
| /tonic/tonic/src/client/ |
| H A D | mod.rs | 19 mod grpc; module 22 pub use self::grpc::Grpc;
|
| /tonic/examples/src/health/ |
| H A D | README.md | 3 gRPC has a [health checking protocol](https://github.com/grpc/grpc/blob/master/doc/health-checking.… 5 …ay use community tools like [grpc_health_probe](https://github.com/grpc-ecosystem/grpc-health-prob…
|
| /tonic/tonic/src/server/ |
| H A D | mod.rs | 11 mod grpc; module 14 pub use self::grpc::Grpc;
|
| /tonic/tonic-health/proto/ |
| H A D | health.proto | 16 // https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto 20 package grpc.health.v1; 23 option go_package = "google.golang.org/grpc/health/grpc_health_v1"; 26 option java_package = "io.grpc.health.v1";
|
| /tonic/tonic-web/ |
| H A D | Cargo.toml | 5 grpc-web protocol translation for tonic services. 10 keywords = ["rpc", "grpc", "grpc-web"]
|
| H A D | README.md | 3 Enables tonic servers to handle requests from `grpc-web` clients directly, 32 [example]: https://github.com/hyperium/tonic/tree/master/examples/src/grpc-web
|
| /tonic/tonic-reflection/proto/ |
| H A D | reflection_v1.proto | 17 // https://github.com/grpc/grpc/blob/master/doc/server-reflection.md 20 // https://github.com/grpc/grpc-proto/blob/master/grpc/reflection/v1/reflection.proto 24 package grpc.reflection.v1; 26 option go_package = "google.golang.org/grpc/reflection/grpc_reflection_v1"; 28 option java_package = "io.grpc.reflection.v1"; 143 // This field uses the error codes defined in grpc::StatusCode.
|
| /tonic/tonic-health/ |
| H A D | README.md | 3 …sely follows the official [health checking protocol](https://github.com/grpc/grpc/blob/master/doc/…
|
| H A D | Cargo.toml | 10 keywords = ["rpc", "grpc", "async", "healthcheck"]
|
| /tonic/examples/ |
| H A D | Cargo.toml | 169 name = "grpc-web-server" 170 path = "src/grpc-web/server.rs" 171 required-features = ["grpc-web"] 174 name = "grpc-web-client" 175 path = "src/grpc-web/client.rs" 176 required-features = ["grpc-web"] 256 grpc-web = ["dep:tonic-web", "dep:bytes", "dep:http", "dep:hyper", "dep:hyper-util", "dep:tracing-s… 271 full = ["gcp", "routeguide", "reflection", "autoreload", "health", "grpc-web", "tracing", "uds", "s…
|
| /tonic/tonic-build/src/ |
| H A D | server.rs | 481 let mut grpc = tonic::server::Grpc::new(codec) in generate_unary() localVariable 485 let res = grpc.unary(method, req).await; in generate_unary() 548 let mut grpc = tonic::server::Grpc::new(codec) in generate_server_streaming() localVariable 552 let res = grpc.server_streaming(method, req).await; in generate_server_streaming() 606 let mut grpc = tonic::server::Grpc::new(codec) in generate_client_streaming() localVariable 610 let res = grpc.client_streaming(method, req).await; in generate_client_streaming() 674 let mut grpc = tonic::server::Grpc::new(codec) in generate_streaming() localVariable 678 let res = grpc.streaming(method, req).await; in generate_streaming()
|
| /tonic/tests/web/tests/ |
| H A D | grpc.rs | 103 async fn grpc(accept_h1: bool) -> (impl Future<Output = Result<(), Error>>, String) { in grpc() function 130 join!(grpc(true), grpc(false), grpc_web(true), grpc_web(false)); in spawn()
|
| /tonic/tonic-types/ |
| H A D | Cargo.toml | 13 keywords = ["rpc", "grpc", "protobuf"]
|
| /tonic/tonic-health/src/generated/ |
| H A D | grpc_health_v1.rs | 360 let mut grpc = tonic::server::Grpc::new(codec) in call() localVariable 369 let res = grpc.unary(method, req).await; in call() 406 let mut grpc = tonic::server::Grpc::new(codec) in call() localVariable 415 let res = grpc.server_streaming(method, req).await; in call()
|
| /tonic/tonic-build/ |
| H A D | Cargo.toml | 10 keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]
|
| /tonic/examples/proto/unaryecho/ |
| H A D | echo.proto | 21 package grpc.examples.unaryecho;
|
| /tonic/tonic/benches-disabled/proto/helloworld/ |
| H A D | helloworld.proto | 18 option java_package = "io.grpc.examples.helloworld";
|
| /tonic/examples/proto/helloworld/ |
| H A D | helloworld.proto | 18 option java_package = "io.grpc.examples.helloworld";
|
| /tonic/ |
| H A D | README.md | 66 - [`tonic-types`]: [`prost`] based grpc utility types including support for gRPC Well Known Types. 92 [gRPC]: https://grpc.io 112 [healthcheck]: https://grpc.io/docs/guides/health-checking/
|
| /tonic/examples/proto/echo/ |
| H A D | echo.proto | 21 package grpc.examples.echo;
|
| /tonic/tonic-reflection/ |
| H A D | Cargo.toml | 13 keywords = ["rpc", "grpc", "async", "reflection"]
|