Hacker News new | ask | show | jobs
by 3836293648 247 days ago
Won't that be an eager runtime though? Breaking Rust's assumption that futures do nothing until polled? Unless you don't submit it to the queue until the poll call, I guess
1 comments

It won't be different from Tokio. When you pass a future to tokio::spawn, that will also eagerly execute the future right away.