[][src]Struct unicycle::Unordered

pub struct Unordered<F, S> where
    S: Sentinel
{ /* fields omitted */ }

A container for an unordered collection of Futures or Streams.

You should use one of the following type aliases to construct it:

Examples

use tokio::time;
use std::time::Duration;

#[tokio::main]
async fn main() {
    let mut futures = unicycle::FuturesUnordered::new();

    futures.push(time::delay_for(Duration::from_secs(2)));
    futures.push(time::delay_for(Duration::from_secs(3)));
    futures.push(time::delay_for(Duration::from_secs(1)));

    while let Some(_) = futures.next().await {
        println!("tick");
    }

    println!("done!");
}

Implementations

impl<T, S> Unordered<T, S> where
    S: Sentinel,
    Self: PollNext
[src]

pub async fn next<'_>(&'_ mut self) -> Option<Self::Item>[src]

Creates a future that resolves to the next item in the unordered set.

impl<T> Unordered<T, Futures>[src]

pub fn new() -> Self[src]

Construct a new, empty FuturesUnordered.

Examples

use unicycle::FuturesUnordered;

let mut futures = FuturesUnordered::new();
assert!(futures.is_empty());

futures.push(async { 42 });

impl<T, S> Unordered<T, S> where
    S: Sentinel
[src]

pub fn is_empty(&self) -> bool[src]

Test if the collection of futures is empty.

Examples

use unicycle::FuturesUnordered;

let mut futures = FuturesUnordered::<tokio::time::Delay>::new();
assert!(futures.is_empty());

pub fn push(&mut self, future: T) -> usize[src]

Push the given future or stream to Unordered and return its task index.

Newly added futures are guaranteed to be polled, but there is no guarantee in which order this will happen.

Pushed tasks are pinned by the Unordered collection automatically.

Examples

use unicycle::FuturesUnordered;

let mut futures = FuturesUnordered::new();
assert!(futures.is_empty());
futures.push(async { 42 });
assert!(!futures.is_empty());

pub fn get_pin_mut(&mut self, index: usize) -> Option<Pin<&mut T>>[src]

Get a pinned mutable reference to the stream or future at the given index.

Examples

use unicycle::FuturesUnordered;
use futures::future::poll_fn;
use std::future::Future as _;

#[tokio::main]
async fn main() {
    let mut futures = FuturesUnordered::new();
    let index = futures.push(async { 42 });

    let result = poll_fn(|cx| {
        futures.get_pin_mut(index).expect("expected future").poll(cx)
    }).await;

    assert_eq!(result, 42);
}

pub fn get_mut(&mut self, index: usize) -> Option<&mut T> where
    T: Unpin
[src]

Get a mutable reference to the stream or future at the given index. Requires that the stores stream or future is Unpin.

Examples

use unicycle::FuturesUnordered;
use futures::future::{ready, poll_fn};
use std::{pin::Pin, future::Future as _};

#[tokio::main]
async fn main() {
    let mut futures = FuturesUnordered::new();
    let index = futures.push(ready(42));

    let result = poll_fn(|cx| {
        Pin::new(futures.get_mut(index).expect("expected future")).poll(cx)
    }).await;

    assert_eq!(result, 42);
}

impl<T> Unordered<T, Streams>[src]

pub fn new() -> Self[src]

Construct a new, empty StreamsUnordered.

Examples

use unicycle::StreamsUnordered;
use tokio::stream::iter;

#[tokio::main]
async fn main() {
    let mut streams = StreamsUnordered::new();
    assert!(streams.is_empty());

    streams.push(iter(vec![1, 2, 3, 4]));
    streams.push(iter(vec![5, 6, 7, 8]));

    let mut received = Vec::new();

    while let Some(value) = streams.next().await {
        received.push(value);
    }

    assert_eq!(vec![5, 1, 6, 2, 7, 3, 8, 4], received);
}

impl<F> Unordered<T, IndexedStreams>[src]

pub fn new() -> Self[src]

Construct a new, empty IndexedStreamsUnordered.

This is the same as StreamsUnordered, except that it yields the index of the stream who'se value was just yielded, alongside the yielded value.

Examples

use unicycle::IndexedStreamsUnordered;
use tokio::stream::iter;

#[tokio::main]
async fn main() {
    let mut streams = IndexedStreamsUnordered::new();
    assert!(streams.is_empty());

    streams.push(iter(vec![1, 2]));
    streams.push(iter(vec![5, 6]));

    let mut received = Vec::new();

    while let Some(value) = streams.next().await {
        received.push(value);
    }

    assert_eq!(
        vec![
            (1, Some(5)),
            (0, Some(1)),
            (1, Some(6)),
            (0, Some(2)),
            (1, None),
            (0, None)
        ],
        received
    );
}

Trait Implementations

impl<T> Default for Unordered<T, Futures>[src]

impl<T, S> Drop for Unordered<T, S> where
    S: Sentinel
[src]

impl<T, S> Extend<T> for Unordered<T, S> where
    S: Sentinel
[src]

impl<T, S> Send for Unordered<T, S> where
    S: Sentinel
[src]

impl<T, S> Stream for Unordered<T, S> where
    S: Sentinel,
    Self: PollNext
[src]

Provide Stream implementation through PollNext.

type Item = Self::Item

Values yielded by the stream.

impl<T, S> Sync for Unordered<T, S> where
    S: Sentinel
[src]

impl<T, S> Unpin for Unordered<T, S> where
    S: Sentinel
[src]

Auto Trait Implementations

impl<F, S> !RefUnwindSafe for Unordered<F, S>

impl<F, S> !UnwindSafe for Unordered<F, S>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future