VOOZH about

URL: https://www.javacodegeeks.com/tag/rxjava/page/2

⇱ RxJava Archives - Page 2 of 3 - Java Code Geeks


  • Core Java👁 Image
    Tomasz NurkiewiczAugust 8th, 2017
    0 120

    flatMap() and the order of events – RxJava FAQ

    As we already discovered, flatMap() does not preserve the order of original stream. Let’s illustrate this using the GeoNames API example from previous article: public…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczAugust 4th, 2017
    0 240

    flatMap() vs. concatMap() vs. concatMapEager() – RxJava FAQ

    There are three, seamlessly similar operators in RxJava 2.x: flatMap(), concatMap() and concatMapEager(). All of them accept the same argument – a function from…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczAugust 2nd, 2017
    0 155

    Eager subscription – RxJava FAQ

    While teaching and mentoring RxJava, as well as after authoring a book, I noticed some areas are especially problematic. I decided…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczOctober 14th, 2016
    0 80

    Small scale stream processing kata. Part 2: RxJava 1.x/2.x

    In part 1: thread pools we designed and implemented relatively simple system for processing events in real time. Make sure…

    Read More »
  • Core Java👁 Image
    Marcin ZajaczkowskiMarch 1st, 2016
    0 314

    Parallel execution of blocking tasks with RxJava and Completable

    ” How parallel execution of blocking “side-effect only” (aka void) tasks became easier with Completable abstraction introduced in RxJava 1.1.1.…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczAugust 10th, 2015
    0 387

    Server-sent events with RxJava and SseEmitter

    Spring framework 4.2 GA is almost released, let’s look at some new features it provides. The one that got my…

    Read More »
  • Core Java👁 Image
    Jos DirksenNovember 13th, 2014
    0 86

    Use reactive streams API to combine akka-streams with rxJava

    Just a quick article this time, since I’m still experimenting with this stuff. There is a lot of talk around…

    Read More »
  • Enterprise Java👁 Image
    Alex SotoJuly 10th, 2014
    1 159

    RxJava + Java8 + Java EE 7 + Arquillian = Bliss

    Microservices are an architectural style where each service is implemented as an independent system. They can use their own persistence…

    Read More »
  • Enterprise Java👁 Image
    Tomasz NurkiewiczJanuary 17th, 2014
    0 83

    Turning Twitter4J into RxJava’s Observable

    aTwitter4J is a Java wrapper around Twitter API. While Twitter supports simple request-response interactions in this article we will explore…

    Read More »
  • «
  • 1
  • 2
  • 3
  • »
Back to top button
Close