repeat

fun <T> Single<T>.repeat(times: Long = Long.MAX_VALUE): Observable<T>

When the Single signals onSuccess, re-subscribes to the Single, times times.

Please refer to the corresponding RxJava document.