Function eventual::sequence [] [src]

pub fn sequence<I, A>(asyncs: I) -> Stream<A::Value, A::Error> where
    I: IntoIterator<Item = A> + Send + 'static,
    A: Async

Returns a Stream consisting of the completion of the supplied async values in the order that they are completed.