Struct gloo_timers::future::IntervalStream
source · [−]pub struct IntervalStream { /* private fields */ }Expand description
A scheduled interval as a Stream.
See IntervalStream::new for scheduling new intervals.
Once scheduled, if you want to stop the interval from continuing to fire,
you can drop the stream.
An interval stream will never resolve to Err.
Implementations
Create a new interval stream.
Remember that streams do nothing unless polled or spawned, so either
spawn this stream via wasm_bindgen_futures::spawn_local or use it inside
another stream or future.
Example
ⓘ
use futures_util::stream::StreamExt;
use gloo_timers::future::IntervalStream;
use wasm_bindgen_futures::spawn_local;
spawn_local(async {
IntervalStream::new(1_000).for_each(|_| {
// Do stuff every one second...
}).await;
});Trait Implementations
Attempt to pull out the next value of this stream, registering the
current task for wakeup if the value is not yet available, and returning
None if the stream is exhausted. Read more