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§

Formats the value using the given formatter. Read more
Values yielded by the stream.
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
Returns the bounds on the remaining length of the stream. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.