Tag: reactiveprogramming

  • How to consume a data stream in javascript?

    Dealing with huge amount of continuous data (data streams) is a challenge for enterprise applications. Fortunately , reactive programming provides a standard solution to this problem. You can generate and consume data streams without blocking the user and without overwhelming the server or client. This post explains how to do reactive programming on the server…

  • How to create a reactive REST service using Spring WebFlux?

    Reactive programming is gaining more popularity now than ever before. Traditionally when you invoke a REST service it becomes a blocking call. You need to wait until you get the response and then proceed with your next line of code. With reactive programming , you can make an asynchronous call and then retrieve the response…