Returns a Flowable that repeats the sequence of items emitted by the current Maybe until the provided stop function returns true. <
(@NonNull BooleanSupplier stop)
| 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 |
nothing calls this directly
no test coverage detected