Skip to content

Commit 5481568

Browse files
author
Laurence Armstrong
committed
README tweaks
1 parent 27ffb62 commit 5481568

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Kotlin Web Application Messaging Protocol (KWAMP)
22
This is an implementation of the [Web Application Messaging Protocol](https://wamp-proto.org/) (WAMP) written in Kotlin.
33

4+
The provides facilities for routed Remote Procdeure Calls (RPC) and Publish and Subscribe (PubSub).
5+
46
It's based on the [WAMP RFC](https://wamp-proto.org/_static/wamp_latest.html).
57

68
So far this project aims to fulfil the WAMP basic profile.
@@ -9,9 +11,9 @@ So far this project aims to fulfil the WAMP basic profile.
911
KWAMP is mostly transport independent (it must be a valid [WAMP transport](https://wamp-proto.org/_static/wamp_latest.html#transports)). E.G raw socket or web socket.
1012

1113
To use the KWAMP client or router you can use the kwamp-client-core or kwamp-router-core packages respectively.
12-
They just need to be hooked into a transport (can be seen in kwamp-client-example and kwamp-router-example respectively).
14+
They just need to be hooked into a transport (doing this can be seen in kwamp-client-example and kwamp-router-example respectively).
1315

14-
(At some point these should become actual packages in this project which can be used by themselves.)
16+
(At some point these integrations should become actual packages in this project which can be used by themselves.)
1517

1618
### Router
1719
The router supports the WAMP basic profile.
@@ -90,11 +92,10 @@ val call = client.call(Uri("<PROCEDURE_URI_HERE>"))
9092
```
9193

9294
This produces a `DeferredCallResult`.
93-
You then then use
95+
You then then use to await the result.
9496
```kotlin
9597
val result = call.await()
9698
```
97-
to await the result.
9899

99100
If there is an error executing the procedure then this will throw an exception.
100101

0 commit comments

Comments
 (0)