Implement time::every in iced_futures
This commit is contained in:
parent
bb9ccc4f62
commit
e2076612cb
14 changed files with 110 additions and 169 deletions
14
src/time.rs
Normal file
14
src/time.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//! 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.
|
||||
///
|
||||
/// [`Subscription`]: ../subscription/struct.Subscription.html
|
||||
pub fn every(
|
||||
duration: std::time::Duration,
|
||||
) -> Subscription<std::time::Instant> {
|
||||
iced_futures::time::every(duration)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue