Merge pull request #149 from zerodefect/update_readmemd
Updated readme.md to reflect inclusion of boost asio implementation.
This commit is contained in:
commit
9ee057b254
10
README.md
10
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
|
"MyHandler" class that extends from it, and in which you also implement the
|
||||||
onError() method to report possible connection errors to your end users.
|
onError() method to report possible connection errors to your end users.
|
||||||
|
|
||||||
Currently, we have only added such an example TcpHandler implementation for libev and
|
Currently, we have example TcpHandler implementations for libev,
|
||||||
libevent. For other event loops (like libuv and boost asio) we do not yet have
|
libevent, and Boost's asio. For other event loops (like libuv) we do not yet have
|
||||||
such examples.
|
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
|
HEARTBEATS
|
||||||
==========
|
==========
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue