VOOZH about

URL: https://www.javacodegeeks.com/author/tomasz-nurkiewicz

⇱ Tomasz Nurkiewicz, Author at Java Code Geeks


  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczJanuary 16th, 2018
    0 491

    Monitoring and measuring reactive application with Dropwizard Metrics

    In the previous article we created a simple indexing code that hammers ElasticSearch with thousands of concurrent requests. The only way to…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Tomasz NurkiewiczJanuary 12th, 2018
    0 125

    Spring, Reactor and ElasticSearch: bechmarking with fake test data

    In the previous article we created a simple adapter from ElasticSearch’s API to Reactor’s Mono, that looks like this: import reactor.core.publisher.Mono; private Mono…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Tomasz NurkiewiczJanuary 12th, 2018
    0 181

    Spring, Reactor and ElasticSearch: from callbacks to reactive streams

    Spring 5 (and Boot 2, when it arrives in a couple of weeks) is a revolution. Not the “annotations over XML”…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 15th, 2017
    1 204

    Idiomatic concurrency: flatMap() vs. parallel() – RxJava FAQ

    Simple, effective and safe concurrency was one of the design principles of RxJava. Yet, ironically, it’s probably one of the…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 13th, 2017
    1 149

    Detecting and testing stalled streams – RxJava FAQ

    Imagine you have a stream that publishes events with unpredictable frequency. Sometimes you can expect dozens of messages per second,…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 8th, 2017
    0 165

    Fixed-rate vs. fixed-delay – RxJava FAQ

    If you are using plain Java, since version 5 we have a handy scheduler class that allows running tasks at…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 5th, 2017
    0 461

    Streaming large JSON file with Jackson – RxJava FAQ

    In the previous article, we learned how to parse excessively large XML files and turn them into RxJava streams. This time let’s…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczSeptember 1st, 2017
    0 202

    Loading files with backpressure – RxJava FAQ

    Processing file as a stream turns out to be tremendously effective and convenient. Many people seem to forget that since…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczAugust 18th, 2017
    0 241

    Generating backpressure-aware streams with Flowable.generate() – RxJava FAQ

    RxJava is missing a factory to create an infinite stream of natural numbers. Such a stream is useful e.g. when…

    Read More »
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • 10
  • ...
  • Last
Back to top button
Close