Returns a Maybe that mirrors the current Maybe, resubscribing to it if it calls onError (infinite retry count). If the current Maybe ca
()
| 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} |
no test coverage detected