Questions tagged [rx-kotlin2]

RxKotlin 2 is a library that adds convenient extension functions to RxJava.

RxKotlin 2 is a lightweight library that adds convenient extension functions to RxJava 2 (see ). It can be found at https://github.com/ReactiveX/RxKotlin

106 questions
0
votes
1 answer

How to skip exceptions silently in RxJava2?

I have a data flow like this: Observable .fromFuture( CompletableFuture.supplyAsync { // First remote call returns Future> listOf(1, 2, 3, 57005, 5) }, Schedulers.computation() ) .flatMap {…
madhead
  • 31,729
  • 16
  • 153
  • 201
1 2 3 4 5 6 7
8