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

Method repeatUntil

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

Returns a Flowable that repeats the sequence of items emitted by the current Maybe until the provided stop function returns true. <

(@NonNull BooleanSupplier stop)

Source from the content-addressed store, hash-verified

4811 * @see <a href="http://reactivex.io/documentation/operators/repeat.html">ReactiveX operators documentation: Repeat</a>
4812 */
4813 @BackpressureSupport(BackpressureKind.FULL)
4814 @CheckReturnValue
4815 @SchedulerSupport(SchedulerSupport.NONE)
4816 @NonNull
4817 public final Flowable<T> repeatUntil(@NonNull BooleanSupplier stop) {
4818 return toFlowable().repeatUntil(stop);
4819 }
4820
4821 /**
4822 * Returns a {@link Flowable} that emits the same values as the current {@code Maybe} with the exception of an

Callers

nothing calls this directly

Calls 1

toFlowableMethod · 0.95

Tested by

no test coverage detected