Class OperatorTakeUntil<T,E>

java.lang.Object
rx.internal.operators.OperatorTakeUntil<T,E>
Type Parameters:
T - the value type of the 'main' source
E - the value type of the 'until' sequence
All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>, Function, Observable.Operator<T,T>

public final class OperatorTakeUntil<T,E> extends Object implements Observable.Operator<T,T>
Returns an Observable that emits the items from the source Observable until another Observable emits an item.

  • Field Details

  • Constructor Details

    • OperatorTakeUntil

      public OperatorTakeUntil(Observable<? extends E> other)
  • Method Details