File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 11# Tutorial: Writing a chat
22
3- Nothing is as simple as a chat server, right? Not quite, chat servers
4- already expose you to all the fun of asynchronous programming: how
5- do you handle clients connecting concurrently. How do you handle them disconnecting?
3+ Nothing is simpler than creating a chat server, right?
4+ Not quite, chat servers expose you to all the fun of asynchronous programming:
65
7- How do you distribute the messages ?
6+ How will the server handle clients connecting concurrently ?
87
9- In this tutorial, we will show you how to write one in ` async-std ` .
8+ How will it handle them disconnecting?
9+
10+ How will it distribute the messages?
11+
12+ This tutorial explains how to write a chat server in ` async-std ` .
1013
1114You can also find the tutorial in [ our repository] ( https://github.com/async-rs/async-std/blob/master/examples/a-chat ) .
You can’t perform that action at this time.
0 commit comments