repeat

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

When the Maybe signals onSuccess or onComplete, re-subscribes to the Maybe, times times.

Please refer to the corresponding RxJava document.