Returns a Flowable that repeats the sequence of items emitted by the current Maybe indefinitely. Backpressure: The operator hon
()
| 4755 | * @see <a href="http://reactivex.io/documentation/operators/repeat.html">ReactiveX operators documentation: Repeat</a> |
| 4756 | */ |
| 4757 | @BackpressureSupport(BackpressureKind.FULL) |
| 4758 | @CheckReturnValue |
| 4759 | @SchedulerSupport(SchedulerSupport.NONE) |
| 4760 | @NonNull |
| 4761 | public final Flowable<T> repeat() { |
| 4762 | return repeat(Long.MAX_VALUE); |
| 4763 | } |
| 4764 | |
| 4765 | /** |
| 4766 | * Returns a {@link Flowable} that repeats the sequence of items emitted by the current {@code Maybe} at most |
nothing calls this directly
no test coverage detected