1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use core::result::Result;
use core::time::Duration;
use crate::errors::Errors;
#[must_use]
pub trait Timer: Errors {
fn is_scheduled(&self) -> Result<bool, Self::Error>;
fn cancel(&mut self) -> Result<bool, Self::Error>;
}
#[must_use]
pub trait OnceTimer: Timer {
fn after(&mut self, duration: Duration) -> Result<(), Self::Error>;
}
#[must_use]
pub trait PeriodicTimer: Timer {
fn every(&mut self, duration: Duration) -> Result<(), Self::Error>;
}
pub trait TimerService: Errors {
type Timer: OnceTimer<Error = Self::Error> + PeriodicTimer<Error = Self::Error> + 'static;
fn timer(
&mut self,
callback: impl FnMut() + Send + 'static,
) -> Result<Self::Timer, Self::Error>;
}
impl<'a, S> TimerService for &'a mut S
where
S: TimerService,
{
type Timer = S::Timer;
fn timer(
&mut self,
callback: impl FnMut() + Send + 'static,
) -> Result<Self::Timer, Self::Error> {
(*self).timer(callback)
}
}
#[cfg(feature = "experimental")]
pub mod asyncs {
use core::future::Future;
use core::time::Duration;
use crate::channel::asyncs::Receiver;
use crate::errors::Errors;
#[must_use]
pub trait OnceTimer: Errors {
type AfterFuture<'a>: Future<Output = Result<(), Self::Error>>
where
Self: 'a;
fn after(&mut self, duration: Duration) -> Result<Self::AfterFuture<'_>, Self::Error>;
}
#[must_use]
pub trait PeriodicTimer: Errors {
type Clock<'a>: Receiver<Data = (), Error = Self::Error>
where
Self: 'a;
fn every(&mut self, duration: Duration) -> Result<Self::Clock<'_>, Self::Error>;
}
pub trait TimerService: Errors {
type Timer: OnceTimer + PeriodicTimer + 'static;
fn timer(&mut self) -> Result<Self::Timer, Self::Error>;
}
}