MCPcopy Index your code
hub / github.com/ReactiveX/RxJava / retry

Method retry

src/main/java/io/reactivex/rxjava3/core/Single.java:4376–4381  ·  view source on GitHub ↗

Repeatedly re-subscribes to the current Single indefinitely if it fails with an onError. Scheduler: retry does

()

Source from the content-addressed store, hash-verified

4374 * @since 2.0
4375 */
4376 @CheckReturnValue
4377 @SchedulerSupport(SchedulerSupport.NONE)
4378 @NonNull
4379 public final Single<T> retry() {
4380 return toSingle(toFlowable().retry());
4381 }
4382
4383 /**
4384 * Repeatedly re-subscribe at most the specified times to the current {@code Single}

Callers 1

retryUntilMethod · 0.95

Calls 2

toSingleMethod · 0.95
toFlowableMethod · 0.95

Tested by

no test coverage detected