skipUntil
Returns an Observable that skips items emitted by the source Observable until a second Observable emits an item.
Parameters
notifier |
The second Observable that has to emit an item before the source Observable's elements begin to be mirrored by the resulting Observable. |
Returns
MonoTypeOperatorFunction<T>
: An Observable that skips items from the source Observable until the second Observable emits
an item, then emits the remaining items.