With epoll you can monitor other epoll handles just like any descriptor. It’s a relatively common pattern and enables hierarchical event dispatching.
Is this possible at all in boost asio? Monitor an arbitrary number of io_context objects for readiness (meaning events are ready to be handled inside them) from one single outermost io_context?
Or am I forced to poll the io_contexts in such a case?