ReactiveSubjectCombinationsExtension<T> extension

on

Methods

scan<R>(R initialValue, R accumulator(R accumulated, T current, int index)) ReactiveSubject<R>

Available on ReactiveSubject<T>, provided by the ReactiveSubjectCombinationsExtension extension

Applies an accumulator function over the source ReactiveSubject, and returns each intermediate result as a ReactiveSubject.
startWith(T startValue) ReactiveSubject<T>

Available on ReactiveSubject<T>, provided by the ReactiveSubjectCombinationsExtension extension

Prepends a given value to the source ReactiveSubject.
withLatestFrom<S, R>(ReactiveSubject<S> other, R combiner(T event, S latestFromOther)) ReactiveSubject<R>

Available on ReactiveSubject<T>, provided by the ReactiveSubjectCombinationsExtension extension

Combines the latest values of two ReactiveSubjects using a specified combiner function.