tarpc
tarpc copied to clipboard
An RPC framework for Rust with a focus on ease of use.
Adding `context::current()` to every RPC call isn't too fun. What if we added an option to `tarpc::service` such that each `Context` parameter was tucked under the hood?
When using an executor that is different from tokio (in my case glib), launching a request from the client results in the following message at runtime: ``` 050, marker: }),...
When will TLS 1.3 support with tarpc come back?
Idea from [async-trait](https://github.com/dtolnay/async-trait#non-threadsafe-futures) crate. Also shortly discussed in discord: https://discord.com/channels/647529123996237854/647529123996237860/800671224945573930 
here is the code ``` // Copyright 2018 Google LLC // // Use of this source code is governed by an MIT-style // license that can be found in the...
@Urhengulas says: > On a sidenode: For questions like this the github discussions ([link](https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/about-team-discussions)) might be a good solution :)
Looking at HelloServer in example-service, how would one add a "Press to shut down" feature?
tarpc provides a nice interface to program so I want to use tarpc to transfer data among different machines in a distributed cluster. Apart from the 'normal' use case of...