j
k
j a
j l
Why is run_one better than poll_one in this case?
run_one() blocks until one async. operation completes. poll_one() just runs one ready handler, and if nothing is ready yet, it does nothing without blocking.
Back to the thread
Back to the list