Overview
Emits the values emitted by the source Observable until anotifier Observable emits a value.
takeUntil subscribes and begins mirroring the source Observable. It also monitors a second Observable that you provide. If the notifier emits a value, the output Observable stops mirroring the source Observable and completes.Type Signature
Parameters
The ObservableInput whose first emitted value will cause the output Observable to stop emitting values from the source Observable.
Returns
MonoTypeOperatorFunction<T> - A function that returns an Observable that emits the values from the source Observable until notifier emits its first value.
