From ea538715a72f1fd469d2906ccc10e0368202952b Mon Sep 17 00:00:00 2001 From: zerodefect Date: Wed, 1 Nov 2017 12:18:47 +0000 Subject: [PATCH] Updated readme.md to reflect inclusion of boost asio implementation. --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28b1564..632e9c0 100644 --- a/README.md +++ b/README.md @@ -429,10 +429,16 @@ instantiate it directly (like we did in the example), but to create your own "MyHandler" class that extends from it, and in which you also implement the onError() method to report possible connection errors to your end users. -Currently, we have only added such an example TcpHandler implementation for libev and -libevent. For other event loops (like libuv and boost asio) we do not yet have +Currently, we have example TcpHandler implementations for libev, +libevent, and Boost's asio. For other event loops (like libuv) we do not yet have such examples. +| TCP Handler Impl | Header File Location | Sample File Location | +| ----------------------- | ---------------------- | --------------------- | +| Boost asio (io_service) | include/libboostasio.h | tests/libboostasio.cpp | +| libev | include/libev.h | tests/libev.cpp | +| libevent | include/libevent.h | tests/libevent.cpp | +| libuv | include/libuv.h | (Not available) | HEARTBEATS ==========