I have a thread pool made with boost::asio::io_service from recipe like this. I wonder how to interrupt posted into it tasks (not killing threads), so that they would be replaced with next tasks in pool?
|
|
||||
|
|
|
Callbacks in boost::asio in general should be reasonably fast. They should just do some work, schedule another one and finish. This will be the points, where task looses CPU and other task will be taken into execution. There are Moreover, you could play with |
||||
|
|