nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
kotlin
2 years ago
266 B
4
Indexable
Never
Observable.just(5L, 2L, 4L, 1L)
            .flatMap { second: Long ->
                Observable.just("Событие было задержано на $second сек.")
                    .delay(second, TimeUnit.SECONDS)
            }.subscribe { x -> println(x) }

nord vpnnord vpn
Ad