Class OperatorTakeLast<T>

java.lang.Object
rx.internal.operators.OperatorTakeLast<T>
Type Parameters:
T - the value type
All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>, Function, Observable.Operator<T,T>

public final class OperatorTakeLast<T> extends Object implements Observable.Operator<T,T>
Returns an Observable that emits the at most the last count items emitted by the source Observable.

  • Field Details

    • count

      final int count
  • Constructor Details

    • OperatorTakeLast

      public OperatorTakeLast(int count)
  • Method Details