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

Method repeat

src/main/java/io/reactivex/rxjava3/core/Single.java:4280–4286  ·  view source on GitHub ↗

Repeatedly re-subscribes to the current Single and emits each success value as a Flowable sequence. Backpressure: The retur

()

Source from the content-addressed store, hash-verified

4278 * @since 2.0
4279 */
4280 @BackpressureSupport(BackpressureKind.FULL)
4281 @CheckReturnValue
4282 @SchedulerSupport(SchedulerSupport.NONE)
4283 @NonNull
4284 public final Flowable<T> repeat() {
4285 return toFlowable().repeat();
4286 }
4287
4288 /**
4289 * Re-subscribes to the current {@code Single} at most the given number of times and emits each success value as a {@link Flowable} sequence.

Callers

nothing calls this directly

Calls 1

toFlowableMethod · 0.95

Tested by

no test coverage detected