combine3<A, B, S> method
StreamSubscription<S>
combine3<
A, B, S>({ - required Rx<A> a,
- required Rx<B> b,
- required S combiner(
- T t,
- A a,
- B b
),
- required Rx<S> to,
})
Implementation
Async.StreamSubscription<S> combine3<A, B, S>({
required Rx<A> a,
required Rx<B> b,
required S Function(T t, A a, B b) combiner,
required Rx<S> to,
}) =>
Reactive.CombineLatestStream.combine3(
subject.stream.asBroadcastStream(),
a.stream.asBroadcastStream(),
b.stream.asBroadcastStream(),
(t, a, b) => combiner(t as T, a as A, b as B),
).listen(to);