RxJava



rx.operators
Class OperationTakeLast

java.lang.Object
  extended by rx.operators.OperationTakeLast

public final class OperationTakeLast
extends java.lang.Object

Returns an Observable that emits the last count items emitted by the source Observable.


Constructor Summary
OperationTakeLast()
           
 
Method Summary
static
<T> Observable.OnSubscribeFunc<T>
takeLast(Observable<? extends T> items, int count)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationTakeLast

public OperationTakeLast()
Method Detail

takeLast

public static <T> Observable.OnSubscribeFunc<T> takeLast(Observable<? extends T> items,
                                                         int count)