Trying to learn asio, and I’m following the examples from the website.
Why is io_service needed and what does it do exactly? Why do I need to send it to almost every other functions while performing asynchronous operations, why can’t it ‘create’ itself after the first ‘binding’.
Asio’s
io_serviceis the facilitator for operating on asynchronous functions. Once an async operation is ready, it uses one ofio_service‘s running threads to call you back. If no such thread exists it uses its own internal thread to call you.Think of it as a queue containing operations. It guarantees you that those operations, when run, will only do so on the threads that called its
run()orrun_once()methods, or when dealing with sockets and async IO, its internal thread.The reason you must pass it to everyone is basically that someone has to wait for async operations to be ready, and as stated in its own documentation
io_serviceis ASIO’s link to the Operating System’s I/O service so it abstracts away the platform’s own async notifiers, such askqueue,/dev/pool/,epoll, and the methods to operate on those, such asselect().Primarily I end up using io_service to demultiplex callbacks from several parts of the system, and make sure they operate on the same thread, eliminating the need for explicit locking, since the operations are serialized. It is a very powerful idiom for asynchronous applications.
You can take a look at the core documentation to get a better feeling of why
io_serviceis needed and what it does.