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§
source§impl IntervalStream
impl IntervalStream
sourcepub fn new(millis: u32) -> IntervalStream
pub fn new(millis: u32) -> IntervalStream
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;
});