From 303cedac7b42f55ea89f5dbd42e86a4d29aba651 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Fri, 12 Feb 2016 01:26:57 -0800 Subject: [PATCH 1/2] List some additional syntactic features --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4b28931..a22bd24 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,8 @@ directly. See the tarpc_examples package for more sophisticated examples. ## Additional Features - Attributes can be specified on rpc methods. These will be included on both the `Service` trait methods as well as on the `Client`'s stub methods. +- Just like regular fns, the return type can be left off when it's `-> ()`. +- Arg-less rpc's are also allowed. ## Planned Improvements (actively being worked on) - Automatically reconnect on the client side when the connection cuts out. From 935fac9b969ee44d2cbd7191f6e8f06d898311de Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Fri, 12 Feb 2016 01:42:17 -0800 Subject: [PATCH 2/2] List concurrent requests as a feature --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a22bd24..ad52690 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ and make it easy and ergonomic to write servers without dealing with sockets or directly. See the tarpc_examples package for more sophisticated examples. ## Additional Features +- Concurrent requests from a single client. - Attributes can be specified on rpc methods. These will be included on both the `Service` trait methods as well as on the `Client`'s stub methods. - Just like regular fns, the return type can be left off when it's `-> ()`.