I am trying to understand how to use repeatWhen
in RxJava. The javadoc is confusing, when I searched online someone suggested to use like below
MyRepeatFunction myRepeatFunction = new MyRepeatFunction(3);
observable1.repeatWhen(myRepeatFunction).subscribe((t) -> System.out.print(t));
class MyRepeatFunction implements Function<Observable<Object>, ObservableSource<Object>> {
private int repeatCount;
public MyRepeatFunction(int repeatCount) {
this.repeatCount = repeatCount;
}
@Override
public @NonNull ObservableSource<Object> apply(@NonNull Observable<Object> t) throws Throwable {
return t.delay(1, TimeUnit.SECONDS);
}
}
The code return t.delay(1, TimeUnit.SECONDS);
will make it continue forever. It doesn't stop until the main thread stops. I want to repeat the observable but only repeatCount times or till a particular is not true.
I am confused. Help is appreciated.
What about this:
You get an observable injected into the
retryWhen
-operator, which emits the error on eachonError
from the source. You could determine what to do next. Emitting a value, any value, in theretryWhen
will result in a re-subscription from bottom (retryWhen
) to the top.The example shows, that you could use the throwable-observable inside
retryWhen
and apply the take-operator in order to limit the re-subscriptions. Furthermore in order to complete the source on a signal you could usetakeUntil
, which takes another observable.takeUntil
will send aonComplete
downstream and the subscription will complete. RxJava will take care of the rest, meaning open subscriptions (retry) will be cancelled.