yougin
04/15/2020, 12:13 PMObservable
?
just(1)
.flatMap { just(2).delay(1, SECONDS).startWith(it) }
.subscribe { println(it) }
Just curious if I’m missing on some operator which does the thing.Zach Klippenstein (he/him) [MOD]
04/15/2020, 2:28 PMandThen
concat
to keep the ordering a little more natural.yougin
04/15/2020, 2:28 PMandThen
for Completable
only?Zach Klippenstein (he/him) [MOD]
04/15/2020, 3:06 PMconcat
yougin
04/15/2020, 3:07 PMursus
04/15/2020, 9:55 PMObservable.merge(
source.take(1),
source.skip(1).delay(..)
)
yougin
04/16/2020, 9:15 AM