About 7,970,000 results
Open links in new tab
  1. When do you use map vs flatMap in RxJava? - Stack Overflow

    When do you use map vs flatMap in RxJava? Say, for example, we want to map Files containing JSON into Strings that contain the JSON-- Using map, we have to deal with the Exception somehow. But ho...

  2. Reactive Programming Advantages/Disadvantages - Stack Overflow

    55 I keep studying and trying Reactive Style of coding using Reactor and RxJava. I do understand that reactive coding makes better utilization of CPU compared to single threaded execution. Is there any …

  3. What is the difference between flatmap and switchmap in RxJava?

    Jan 27, 2015 · The rxjava doc definition of switchmap is rather vague and it links to the same page as flatmap. What is the difference between the two operators?

  4. java - Difference between CompletableFuture, Future and RxJava's ...

    Feb 11, 2016 · RxJava's Observable is an enhanced version of CompletableFuture. It allows you to handle the backpressure. In the thenApply method (and even with its brothers thenApplyAsync) we …

  5. When to use RxJava in Android and when to use LiveData from …

    Sep 20, 2017 · RxJava provides more capabilities in transformations (as mentioned by @Bob Dalgleish). Currently, we're using RxJava in data source and repository layers, and it's transformed …

  6. What is the difference between Observable, Completable and Single in …

    Sep 17, 2017 · Can anyone please explain the difference between Observable, Completable and Single in RxJava with clear examples? In which scenario we use one over the others?

  7. Java Spring WebFlux vs RxJava - Stack Overflow

    Jun 6, 2019 · I’m starting to learn reactive programming in Java. The whole reactive paradigm is new to me. In my learning process, i have come across few terms/libraries such as Spring WebFlux, …

  8. Difference between Java 8 streams and RxJava observables

    May 13, 2015 · 40 There are a few technical and conceptional differences, for example, Java 8 streams are single use, pull based, synchronous sequences of values whereas RxJava Observables are re …

  9. How Kotlin coroutines are better than RxKotlin? - Stack Overflow

    May 4, 2017 · RxKotlin is just syntactic sugar to use RxJava in Kotlin, so I will speak about RxJava and not RxKotlin in the following. Coroutines are a lower lever and more general concept than RxJava, …

  10. What is the difference between concatMap and flatMap in RxJava

    What is the difference between concatMap and flatMap in RxJava Asked 11 years, 5 months ago Modified 1 year, 2 months ago Viewed 49k times