summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-28 19:47:52 +0200
committerKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-28 19:47:52 +0200
commit8f1cc715e6052a75ffe9892655b77432ab18452f (patch)
treea2120a2120d5566e2f5f4b77d6b4211376a6e76a
parentfe1faf856d103e2587aec3955dfb5522d7b63e5e (diff)
Add README.
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..92e7e47
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+# protobuf-simple-rpc
+
+A simple socket based RPC transport layer for protocol buffers. Implements an
+asynchronous RpcChannel. Look at the
+[example](https://github.com/orbekk/protobuf-simple-rpc/tree/master/src/main/java/com/orbekk/example)
+for how to implement a simple service.
+
+## Background and target applications
+
+During my master's project I needed fast RPCs for Android phones. In the
+beginning I used [jsonrpc4j](http://code.google.com/p/jsonrpc4j/) and
+[Jetty](http://jetty.codehaus.org/jetty/) which are a wonderful pieces of
+software, but unfortunately can be really slow.
+
+If you need a lightweight RPC mechanism you may find this useful.
+
+## Asynchronous RPC
+
+Because I want to keep this library small (and also because I'm lazy) I only
+support asynchronous RPCs. You can simulate synchronous calls by waiting for
+each RPC to complete.