observable Interval
fun observableInterval(period: Duration, startDelay: Duration = period, scheduler: Scheduler): Observable<Long>
Returns an Observable that emits 0L after startDelay and ever increasing numbers after each period of time specified by period, on a specified Scheduler.
Default start delay is equal to the specified period
Please refer to the corresponding RxJava document.