Struct glommio::timer::Timer[][src]

pub struct Timer { /* fields omitted */ }
Expand description

A timer that expires after a duration of time.

Timers are futures that output the Instant at which they fired. Note that because of that, Timers always block the current task queue in which they currently execute.

In most situations you will want to use TimerActionOnce

Examples

Sleep for 100 milliseconds:

use glommio::{timer::Timer, LocalExecutor};
use std::time::Duration;

async fn sleep(dur: Duration) {
    Timer::new(dur).await;
}

let ex = LocalExecutor::default();

ex.run(async {
    sleep(Duration::from_millis(100)).await;
});

Implementations

Creates a timer that expires after the given duration of time.

Examples

use glommio::{timer::Timer, LocalExecutor};
use std::time::Duration;

let ex = LocalExecutor::default();
ex.run(async move {
    Timer::new(Duration::from_millis(100)).await;
});

Resets the timer to expire after the new duration of time.

Note that resetting a timer is different from creating a new timer because reset() does not remove the waker associated with the task that is polling the timer.

Examples

use glommio::{timer::Timer, LocalExecutor};
use std::time::Duration;

let ex = LocalExecutor::default();
ex.run(async move {
    let mut t = Timer::new(Duration::from_secs(1));
    t.reset(Duration::from_millis(100));
    t.await;
});

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

The type of value produced on completion.

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

A convenience for calling Future::poll() on !Unpin types.

Returns the result of self or other future, preferring self if both are ready. Read more

Returns the result of self or other future, with no preference if both are ready. Read more

Catches panics while polling the future. Read more

Boxes the future and changes its type to dyn Future + Send + 'a. Read more

Boxes the future and changes its type to dyn Future + 'a. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

🔬 This is a nightly-only experimental API. (into_future)

The output that the future will produce on completion.

🔬 This is a nightly-only experimental API. (into_future)

Which kind of future are we turning this into?

🔬 This is a nightly-only experimental API. (into_future)

Creates a future from a value.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more