pub trait FutureExt: Future {
    fn timeout<D>(self, deadline: D) -> Timeout<Self, D::IntoFuture>Notable traits for Timeout<F, D>impl<F: Future, D: Future> Future for Timeout<F, D>    type Output = Result<F::Output>;
    where
        Self: Sized,
        D: IntoFuture
, { ... } fn delay<D>(self, deadline: D) -> Delay<Self, D::IntoFuture>Notable traits for Delay<F, D>impl<F: Future, D: Future> Future for Delay<F, D> type Output = F::Output;
    where
        Self: Sized,
        D: IntoFuture
, { ... } fn park<I>(self, interval: I) -> Park<Self, I::IntoStream>Notable traits for Park<F, I>impl<F, I> Future for Park<F, I> where
    F: Future,
    I: Stream<Item = Parker>, 
type Output = F::Output;

    where
        Self: Sized,
        I: IntoStream<Item = Parker>
, { ... } }
Expand description

Extend Future with time-based operations.

Provided Methods

Return an error if a future does not complete within a given time span.

Typically timeouts are, as the name implies, based on time. However this method can time out based on any future. This can be useful in combination with channels, as it allows (long-lived) futures to be cancelled based on some external event.

When a timeout is returned, the future will be dropped and destructors will be run.

Example
use futures_time::prelude::*;
use futures_time::time::{Instant, Duration};
use std::io;

fn main() {
    async_io::block_on(async {
        let res = async { "meow" }
            .delay(Duration::from_millis(100))  // longer delay
            .timeout(Duration::from_millis(50)) // shorter timeout
            .await;
        assert_eq!(res.unwrap_err().kind(), io::ErrorKind::TimedOut); // error

        let res = async { "meow" }
            .delay(Duration::from_millis(50))    // shorter delay
            .timeout(Duration::from_millis(100)) // longer timeout
            .await;
        assert_eq!(res.unwrap(), "meow"); // success
    });
}

Delay resolving the future until the given deadline.

The underlying future will not be polled until the deadline has expired. In addition to using a time source as a deadline, any future can be used as a deadline too. When used in combination with a multi-consumer channel, this method can be used to synchronize the start of multiple futures and streams.

Example
use futures_time::prelude::*;
use futures_time::time::{Instant, Duration};

fn main() {
    async_io::block_on(async {
        let now = Instant::now();
        let delay = Duration::from_millis(100);
        let _ = async { "meow" }.delay(delay).await;
        assert!(now.elapsed() >= *delay);
    });
}

Suspend or resume execution of a future.

When this method is called the execution of the future will be put into a suspended state until the channel returns Parker::Unpark or the channel’s senders are dropped. The underlying future will not be polled while the it is paused.

Implementors