forkJoin5<A, B, C, D, E, T> static method

Stream<T> forkJoin5<A, B, C, D, E, T>(
  1. Stream<A> streamA,
  2. Stream<B> streamB,
  3. Stream<C> streamC,
  4. Stream<D> streamD,
  5. Stream<E> streamE,
  6. T combiner(
    1. A a,
    2. B b,
    3. C c,
    4. D d,
    5. E e,
    ),
)

Merges the given Streams into a single Stream sequence by using the combiner function when all of the stream sequences emits their last item.

Example

Rx.forkJoin5(
  Stream.value('a'),
  Stream.value('b'),
  Stream.value('c'),
  Stream.value('d'),
  Stream.fromIterable(['e', 'f']),
  (a, b, c, d, e) => a + b + c + d + e)
.listen(print); //prints 'abcdf'

Implementation

static Stream<T> forkJoin5<A, B, C, D, E, T>(
        Stream<A> streamA,
        Stream<B> streamB,
        Stream<C> streamC,
        Stream<D> streamD,
        Stream<E> streamE,
        T Function(A a, B b, C c, D d, E e) combiner) =>
    ForkJoinStream.combine5(
        streamA, streamB, streamC, streamD, streamE, combiner);