you really need Flowable if you're doing anything ...
# rx
j
you really need Flowable if you're doing anything infinite. for example, you could do
just(true).concatWith(generate({ false }, { _, e -> e.onNext(false) }))
to get an infinite stream of true followed by falses
👍 1