You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
schedule() can now be called from any thread and will move tasks to the event loop.
This enables receiving I/O notification from "sidecar runtimes" like async-compat, for
instance. pthread_kill(main_thread, SIGIO) is used to interrupt epoll when called
outside of the event loop thread.
The async example has been rewritten to use async_::spawn, demonstrating usage of
reqwest and hyper clients wrapped in Compat to provide a tokio runtime environment while
using the async_ Scheduler as executor.
0 commit comments