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

Method retry

src/main/java/io/reactivex/rxjava3/core/Maybe.java:4868–4873  ·  view source on GitHub ↗

Returns a Maybe that mirrors the current Maybe, resubscribing to it if it calls onError (infinite retry count). If the current Maybe ca

()

Source from the content-addressed store, hash-verified

4866 * @see <a href="http://reactivex.io/documentation/operators/retry.html">ReactiveX operators documentation: Retry</a>
4867 */
4868 @CheckReturnValue
4869 @SchedulerSupport(SchedulerSupport.NONE)
4870 @NonNull
4871 public final Maybe<T> retry() {
4872 return retry(Long.MAX_VALUE, Functions.alwaysTrue());
4873 }
4874
4875 /**
4876 * Returns a {@code Maybe} that mirrors the current {@code Maybe}, resubscribing to it if it calls {@code onError}

Callers 1

retryUntilMethod · 0.95

Calls 3

alwaysTrueMethod · 0.95
toFlowableMethod · 0.95
singleElementMethod · 0.45

Tested by

no test coverage detected