RxJava



rx.operators
Class OperatorRetry<T>

java.lang.Object
  extended by rx.operators.OperatorRetry<T>
All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super Observable<T>>>, Function, Observable.Operator<T,Observable<T>>

public class OperatorRetry<T>
extends java.lang.Object
implements Observable.Operator<T,Observable<T>>


Constructor Summary
OperatorRetry()
           
OperatorRetry(int retryCount)
           
 
Method Summary
 Subscriber<? super Observable<T>> call(Subscriber<? super T> s)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperatorRetry

public OperatorRetry(int retryCount)

OperatorRetry

public OperatorRetry()
Method Detail

call

public Subscriber<? super Observable<T>> call(Subscriber<? super T> s)
Specified by:
call in interface Func1<Subscriber<? super T>,Subscriber<? super Observable<T>>>