blob: b8432895d64752f49830a7ea7dc9b774e2bd5f35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
//! Listen and react to time.
use crate::Subscription;
/// Returns a [`Subscription`] that produces messages at a set interval.
///
/// The first message is produced after a `duration`, and then continues to
/// produce more messages every `duration` after that.
pub fn every(
duration: std::time::Duration,
) -> Subscription<std::time::Instant> {
iced_futures::time::every(duration)
}
|