delay

fun Completable.delay(delay: Duration, scheduler: Scheduler, delayError: Boolean = false): Completable

Delays onComplete signal from the current Completable for the specified time. The onError signal is not delayed by default, which can be enabled by setting the delayError flag.

Please refer to the corresponding RxJava document.