public final class OperatorTake<T> extends Objectimplements Observable .Operator <T ,T>
Observable that emits the first
num items emitted by the source
Observable.
You can choose to pay attention only to the first num items emitted by an Observable by using the take operator. This operator returns an Observable that will invoke a subscriber's onNext function a maximum of num times before invoking onCompleted.
| Constructor and Description |
|---|
OperatorTake(int limit)
|
public Subscriber<? super T> call(Subscriber <? super T> child)