summaryrefslogtreecommitdiffstats
path: root/examples/README.md
diff options
context:
space:
mode:
authorRoman <humbug@deeptown.org>2018-02-07 01:41:31 +0400
committerCarl Lerche <me@carllerche.com>2018-02-06 13:41:31 -0800
commitad8338e4da63f659acce89284381d08a2474f85b (patch)
treee98a11f5aed7663c88956eb9635747389aae144e /examples/README.md
parent73b763f69fe517fdbbb0360bd9c0a50db8f8f62c (diff)
Remove UdpCodec (#109)
`UdpFramed` is updated to use the `Encoder` and `Decoder` traits from `tokio-io`.
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/README.md b/examples/README.md
index 688984b9..3f4734c6 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -39,8 +39,8 @@ A high level description of each example is:
showcasing running on multiple cores, working with futures and spawning
tasks, and finally framing a TCP connection to discrete request/response
objects.
-* `udp-codec` - an example of using the `UdpCodec` trait along with a small
- ping-pong protocol happening locally.
+* `udp-codec` - an example of using the `Encoder`/`Decoder` traits for UDP
+ along with a small ping-pong protocol happening locally.
* `compress` - an echo-like server where instead of echoing back everything read
it echos back a gzip-compressed version of everything read! All compression
occurs on a CPU pool to offload work from the event loop.