Chromium Code Reviews| Index: examples/echo/README.md |
| diff --git a/examples/echo/README.md b/examples/echo/README.md |
| index b2d4b55e57ba85f6f7232d2aa94730c6afe13278..764f2bc8a6d1d9ff4868a62589a9903e11438ae9 100644 |
| --- a/examples/echo/README.md |
| +++ b/examples/echo/README.md |
| @@ -4,6 +4,9 @@ Example Echo Client & Server |
| This echo client/server demonstrate how to create and use a mojom interface, |
| as well as demonstrating one way to communicate between mojo applications. |
| +For more general introduction to Mojo, refer to the [Mojo |
|
jimbe
2015/10/30 20:28:29
s/For more general introduction to Mojo/For a deep
Sean Klein
2015/10/30 22:31:54
Done.
|
| +Tutorial](https://docs.google.com/document/d/1mufrtxTk8w9qa3jcnlgqsYkWlyhwEpc7aWNaSOks7ug). |
| + |
| ## Running the Echo Client & Server |
| ``` |
| @@ -175,3 +178,9 @@ This server creates an `EchoImpl` object, like the `SingletonServer`, but uses a |
| single `Binding`, rather than a `BindingSet`. This means that when a new client |
| connects to the OneAtATimeServer, the previous binding is closed, and a new |
| binding is made between the new client and the interface implementation. |
| + |
| +The OneAtATimeServer is an unusual case, as it actually contains a race |
| +condition for multiple clients. If a new client binds to the server before the |
|
jimbe
2015/10/30 20:28:29
For the first sentence, how about:
The OneAtATimeS
Sean Klein
2015/10/30 22:31:54
Done.
|
| +first client managed to call EchoString, the first client's call would cause an |
| +error. Unless you know what you are doing, it is advised to avoid creating a |
|
jimbe
2015/10/30 20:28:29
s/know what you are doing/have a specific use case
Sean Klein
2015/10/30 22:31:54
Done.
|
| +server like this. |