Home
last modified time | relevance | path

Searched refs:it (Results 1 – 21 of 21) sorted by relevance

/tonic/
H A Ddeny.toml8 …ce is nice but brings in too many dependencies and that are often outdated, so not worth it for us.
18 # term is not fully maintained, and termcolor is replacing it
22 { crate = "[email protected]", reason = "quickcheck depends on rand which depends on it" },
23 … "[email protected]+wasi-snapshot-preview1", reason = "quickcheck depends on rand which depends on it" },
24 { crate = "[email protected]", reason = "aws-lc-sys depends on bindgen which depends on it" },
25 { crate = "[email protected]", reason = "protox depends on miette wich depends on it" },
H A DCONTRIBUTING.md40 hyperium/tonic [issue tracker][issues] is the way to report it.
76 the issue, it becomes impossible for us to fix.
88 Once an issue has been opened, it is not uncommon for there to be discussion
89 around it. Some contributors may have differing opinions about the issue,
109 and triaging issues, but carries with it a necessary review and approval
119 documentation) are greatly appreciated. Before making a large change, it is
127 example), it is either adding new functionality to a crate or it is fixing
275 nicely even when it is indented.
348 is it clear enough?
382 If a Pull Request appears to be abandoned or stalled, it is polite to first
[all …]
H A DREADME.md40 may be a good resource as it shows examples of many of the gRPC features.
H A DCHANGELOG.md88 - Removed `NamedService` from the `transport` module, please import it via
393 * **tonic:** make it easier to add tower middleware to servers ([#651](https://github.com/hyperium/…
/tonic/tonic-health/
H A DREADME.md3 …https://github.com/grpc/grpc/blob/master/doc/health-checking.md), although it may not implement al…
5 …[main repo](https://github.com/hyperium/tonic/tree/master/examples/src/health) to see how it works.
10 `NamedService` trait. You can use it like that:
/tonic/tonic-reflection/proto/
H A Dreflection_v1alpha.proto49 // Its corresponding method is best-effort: it's not guaranteed that the
50 // reflection service will implement this method, and it's not guaranteed
52 // StatusCode::UNIMPLEMENTED if it's not implemented.
119 // ServiceResponse message to encapsulate it.
H A Dreflection_v1.proto59 // Its corresponding method is best-effort: it's not guaranteed that the
60 // reflection service will implement this method, and it's not guaranteed
62 // StatusCode::UNIMPLEMENTED if it's not implemented.
129 // ServiceResponse message to encapsulate it.
/tonic/tonic-build/src/
H A Dlib.rs320 let mut it = name.chars().peekable(); in naive_snake_case() localVariable
322 while let Some(x) = it.next() { in naive_snake_case()
324 if let Some(y) = it.peek() { in naive_snake_case()
/tonic/.github/ISSUE_TEMPLATE/
H A Dfeature_request.md3 about: I have a suggestion (and may want to implement it ��)!
/tonic/examples/
H A Dhelloworld-tutorial.md11 [rustup] is a convenient tool to install it, if you haven't already.
24 `tonic` works on rust `1.39` and above as it requires support for the `async_await`
77 …file should be complete and ready for use in our application. Here is what it should look like com…
260 …gRPC server, and that's great but how can our application communicate with it? This is where our c…
290 That's it! Our complete client file should look something like below, if it doesn't please go back …
316 ## Putting it all together
325 Congrats on making it through this introductory tutorial! We hope that this walkthrough tutorial ha…
H A Drouteguide-tutorial.md33 [rustup] is a convenient tool to install it, if you haven't already.
128 the server. Once the client has finished writing the messages, it waits for the server to read them
140 writing its responses, or it could alternately read a message then write a message, or some other
204 That's it. The generated code contains:
219 (though you might find it interesting anyway!).
332 the corresponding `data` module to load and deserialize it in
377 from the client and tries to find a feature at the given `Point`. If no feature is found, it returns
613 Our client is now ready to make service calls. Note that `client` is mutable, this is because it
728 it into a `Stream` using the `tokio_stream::iter` function. This is a cheap an easy way to get
778 ## Try it out!
[all …]
/tonic/examples/src/health/
H A DREADME.md5 …thServer that will run alongside the application service. In order to test it, you may use communi…
/tonic/interop/proto/grpc/testing/
H A Dempty.proto20 // messages in your project. A typical example is to use it as argument or the
H A Dmessages.proto89 // successful when the client expected it.
157 // Client tells server what reconnection parameters it used.
164 // reconnect backoffs it saw.
/tonic/tonic/benches-disabled/proto/diverse_types/
H A Ddiverse_types.proto9 // This is the default, but we specify it here explicitly.
/tonic/tonic-types/proto/
H A Derror_details.proto90 // Example of an error when contacting the "pubsub.googleapis.com" API when it
141 // For example, if an RPC failed because it required the Terms of Service to be
142 // acknowledged, it could list the terms of service violation in the
190 // it. For example, it can be used to identify requests in the service's logs.
H A Dstatus.proto33 // You can find out more about this error model and how to work with it in the
/tonic/examples/proto/googleapis/google/api/
H A Dfield_behavior.proto45 // This **does not** change the behavior in protocol buffers itself; it only
65 // field in a request does nothing (the server *must* ignore it and
H A Dhttp.proto53 // and use it for large scale production services.
176 // Note that when using `*` in the body mapping, it is not possible to
282 // # Selects a gRPC method and applies HttpRule to it.
310 // If an API needs to use a JSON array for request or response body, it can map
/tonic/examples/proto/googleapis/google/pubsub/v1/
H A Dpubsub.proto174 // signs (`%`). It must be between 3 and 255 characters in length, and it
199 // server; it is ignored if it is set in any requests.
228 // it receives the `Publish` call. It must not be populated by the
641 // in length, and it must not start with `"goog"`.
653 // used to configure it. An empty `pushConfig` signifies that the subscriber
659 // interval after the message is delivered and before it is acknowledged, it
804 // resource expires if it is not active for a period of `ttl`. The definition
846 // If not present during the `CreateSubscription` call, it will default to
998 // even if it there are no messages available to return in the `Pull`
1001 // Warning: setting this field to `true` is discouraged because it adversely
[all …]
/tonic/tonic-types/
H A DREADME.md5 This crate also introduces the [`StatusExt`] trait and implements it in