Rx\Observable::skipUntil PHP Method

skipUntil() public method

Returns the values from the source observable sequence only after the other observable sequence produces a value.
public skipUntil ( rx\ObservableInterface $other ) : Rx\Observable\AnonymousObservable
$other rx\ObservableInterface The observable sequence that triggers propagation of elements of the source sequence.
return Rx\Observable\AnonymousObservable An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation.
    public function skipUntil(ObservableInterface $other)
    {
        return $this->lift(function () use($other) {
            return new SkipUntilOperator($other);
        });
    }