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

Method repeat

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

Returns a Flowable that repeats the sequence of items emitted by the current Maybe indefinitely. Backpressure: The operator hon

()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

toFlowableMethod · 0.95

Tested by

no test coverage detected