Struct Timer

Source
pub struct Timer { /* private fields */ }
Expand description

A timer object that can be used to put the current thread to sleep or to start a callback after a given amount of time.

Implementations§

Source§

impl Timer

Source

pub fn new2() -> Result<(Self, Canceller)>

Create a Timer and its associated Canceller.

Examples found in repository?
examples/example1.rs (line 6)
5fn main() {
6    let (mut timer, canceller) = Timer::new2().unwrap();
7
8    println!("Wait 2s, uninterrupted.");
9    let r = timer.sleep(Duration::from_secs(2));
10    println!("Done: {:?}", r);
11
12    println!("Wait 2s, cancelled at once.");
13    canceller.cancel().unwrap();
14    let r = timer.sleep(Duration::from_secs(2));
15    println!("Done {:?}", r);
16
17    println!("Wait 2s, not cancelled.");
18    let r = timer.sleep(Duration::from_secs(2));
19    println!("Done {:?}", r);
20
21    println!("Wait 10s, cancel after 2s");
22    let canceller2 = canceller.clone();
23    std::thread::spawn(move || {
24        std::thread::sleep(Duration::from_secs(2));
25        canceller2.cancel().unwrap();
26    });
27    match timer.sleep(Duration::from_secs(10)) {
28        Err(ref e) if e.kind() == io::ErrorKind::Interrupted => println!("Cancelled"),
29        x => panic!("{:?}", x),
30    };
31}
Source

pub fn sleep(&mut self, duration: Duration) -> Result<()>

Put the current thread to sleep until the given time has elapsed or the timer is cancelled.

Returns:

Examples found in repository?
examples/example1.rs (line 9)
5fn main() {
6    let (mut timer, canceller) = Timer::new2().unwrap();
7
8    println!("Wait 2s, uninterrupted.");
9    let r = timer.sleep(Duration::from_secs(2));
10    println!("Done: {:?}", r);
11
12    println!("Wait 2s, cancelled at once.");
13    canceller.cancel().unwrap();
14    let r = timer.sleep(Duration::from_secs(2));
15    println!("Done {:?}", r);
16
17    println!("Wait 2s, not cancelled.");
18    let r = timer.sleep(Duration::from_secs(2));
19    println!("Done {:?}", r);
20
21    println!("Wait 10s, cancel after 2s");
22    let canceller2 = canceller.clone();
23    std::thread::spawn(move || {
24        std::thread::sleep(Duration::from_secs(2));
25        canceller2.cancel().unwrap();
26    });
27    match timer.sleep(Duration::from_secs(10)) {
28        Err(ref e) if e.kind() == io::ErrorKind::Interrupted => println!("Cancelled"),
29        x => panic!("{:?}", x),
30    };
31}
Source

pub fn after<F>(wait: Duration, callback: F) -> Result<Canceller>
where F: FnOnce(Result<()>) + Send + 'static,

Run a callback on a new thread after a specified amount of time. The callback is not run if after returns an error.

Otherwise, the callback is given:

Examples found in repository?
examples/example2.rs (line 13)
5fn main() {
6    let callback = |status: io::Result<()>| match status {
7        Ok(_) => println!("Called"),
8        Err(ref e) if e.kind() == io::ErrorKind::Interrupted => println!("Cancelled"),
9        Err(e) => eprintln!("Error: {:?}", e),
10    };
11
12    println!("Run callback after 2s");
13    Timer::after(Duration::from_secs(2), callback).unwrap();
14
15    println!("Wait 4s");
16    std::thread::sleep(Duration::from_secs(4));
17
18    println!("Run callback after 4s");
19    let canceller = Timer::after(Duration::from_secs(4), callback).unwrap();
20
21    std::thread::sleep(Duration::from_secs(2));
22    println!("Cancel timer.");
23    canceller.cancel().unwrap();
24
25    std::thread::sleep(Duration::from_secs(3));
26}

Auto Trait Implementations§

§

impl !Freeze for Timer

§

impl !RefUnwindSafe for Timer

§

impl Send for Timer

§

impl Sync for Timer

§

impl Unpin for Timer

§

impl !UnwindSafe for Timer

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.