pub fn interval_stream(
value: Duration,
) -> Pin<Box<dyn Stream<Item = ()> + Send + 'static>>
Expand description
Create a Stream
that will provide a value every given number of milliseconds.
The Future
must be spawned on an Executor
backed by a glib::MainContext
.