/AsyncSignals

Proof of concept implementation of signals pushed on a separate event loop

Primary LanguageC++GNU General Public License v3.0GPL-3.0

AsyncSignals

Proof of concept of signals/slots pushed on a separate event loop. This code was written for "didactic" purposes and you don't want to use it in production.

The idea is to use the boost::signals2 but to delegate the execution of the callbacks (slots) to a separate thread, not the callback that invoke the signal handler.

To do this, we use boost::asio:io_service.