Skip until¶
See also
- Official ReactiveX documentation: SkipUntil
 
- 
Observable.skip_until(other)¶ Returns the values from the source observable sequence only after the other observable sequence produces a value.
- other – The observable sequence that triggers propagation of elements
 - of the source sequence.
 
Returns an observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.