mod.rs |
# Notes
The current implementation is somewhat limited. The `Waker` is not
implemented, as at the time of writing there is no way to support to wake-up
a thread from calling `poll_oneoff`.
Furthermore the (re/de)register functions also don't work while concurrently
polling as both registering and polling requires a lock on the
`subscriptions`.
Finally `Selector::try_clone`, required by `Registry::try_clone`, doesn't
work. However this could be implemented by use of an `Arc`.
In summary, this only (barely) works using a single thread. |
11822 |