Function tikv_util::future::poll_future_notify [−][src]
pub fn poll_future_notify<F: Future<Output = ()> + Send + 'static>(f: F)
Polls the provided future immediately. If the future is not ready,
it will register the waker. When the event is ready, the waker will
be notified, then the internal future is immediately polled in the
thread calling wake()
.