Repeatedly re-subscribes to the current Single indefinitely if it fails with an onError. Scheduler: retry does
()
| 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} |
no test coverage detected