Tim
Tim
Thanks for the feedback! Adding an example showing TLS usage is a great idea. I'd definitely take a contribution if you were interested in working on such an example.
Hmm, it is supposed to be generic over AsyncRead and AsyncWrite. Did you see [`Transport::from(t)`](https://github.com/google/tarpc/blob/5f6c3d7d989b7d7267c19d4b89c658450e86614e/bincode-transport/src/lib.rs#L117)?
Hey! Sorry, I lost track of this. So in general, blob transfer is a hard problem that unary RPCs are not well suited to: 1. It is expected that a...
Max payload/frame size is up to the transport to decide. For example, if you're using an in-memory channel that doesn't serialize requests or responses, you probably don't want to enforce...
This is something tarpc doesn't handle very gracefully today: tokio is an optional feature, and yet tarpc uses tokio timers regardless of whether the tokio feature is enabled. Is it...
@LucioFranco yeah totally, I know there's no getting around that :) but is there a way to set up just the timer's required runtime rather than a full tokio runtime?...
Nice, thanks!
Hey! Tarpc doesn't build in any shutdown functionality, because different people may want different behavior. But, adding it yourself via native futures/streams features wouldn't be too hard; it just kind...
`stream-cancel` looks very relevant -- also, jonhoo makes great stuff, so I'd trust it as a dependency. In general, I think tarpc's approach to servers is modular enough to allow...
Empty strings regardless of input certainly sounds like a bad bug! Do you have an example that reproduces that behavior? I'll try to get to it this week.