Merge pull request #149 from zerodefect/update_readmemd

Updated readme.md to reflect inclusion of boost asio implementation.
This commit is contained in:
Emiel Bruijntjes 2017-11-01 13:32:34 +01:00 committed by GitHub
commit 9ee057b254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -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
========== ==========