Don't mention 'static optional in readme

This isn't supported by the service attribute.
This commit is contained in:
Tim
2019-08-13 08:49:11 -07:00
committed by GitHub
parent 9479963773
commit cd03f3ff8c

View File

@@ -30,7 +30,7 @@ process, and no context switching between different languages.
Some other features of tarpc:
- Pluggable transport: any type impling `Stream<Item = Request> + Sink<Response>` can be
used as a transport to connect the client and server.
- `Send + 'static` optional: if the transport doesn't require it, neither does tarpc!
- `Send` optional: if the transport doesn't require it, neither does tarpc!
- Cascading cancellation: dropping a request will send a cancellation message to the server.
The server will cease any unfinished work on the request, subsequently cancelling any of its
own requests, repeating for the entire chain of transitive dependencies.