سؤال

Looks like the io_service::stop() only let the run() return. And the io_service::~io_service will destroy all the handlers.

Is there a way to let io_service finish all the queued handlers and then stop?

هل كانت مفيدة؟

المحلول

This happens automatically: io_service::run will automatically unblock once all work has been completed (and no new work is added). This is provided that you do not use an io_service::work object.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top