Repeatedly re-subscribes to the current Single and emits each success value as a Flowable sequence. Backpressure: The retur
()
| 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. |
nothing calls this directly
no test coverage detected