Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

The only yield points are .await points. If there's an .await in a loop, then sure, but otherwise no.


What is the cost of an .await point?

For this to work, perhaps Rust should cooperate too, inserting .await points at strategic places in the code, to keep cost low but still guaranteeing a certain responsiveness of the overall system.


That would explode the state machine size and make its performance characterization very hard.

And you would need to avoid having any kind of call to external code (or yield before and after every such call, and pray for the best).


If I understand the futures::pending!() macro correctly, one can use that to add a forced yield point in a loop, right?


Yes, it creates a future, and then immediately .awaits it.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: