Top "Reactor" questions

The reactor design pattern is an event handling pattern for handling service requests delivered concurrently to a service handler by one or more inputs.

Spring Webflux : Webclient : Get body on error

I am using the webclient from spring webflux, like this : WebClient.create() .post() .uri(url) .syncBody(body) .accept(MediaType.APPLICATION_…

java spring spring-webflux reactor
Akka or Reactor

I am in the process of starting a new project (java-based). I need to build it as a modular, distributed …

java spring akka reactor project-reactor
Correct way of throwing exceptions with Reactor

I'm new to project Reactor and reactive programming in general. I'm currently working on a piece of code similar to …

java reactive-programming project-reactor reactor
How to set a timeout in Spring 5 WebFlux WebClient

I'm trying to set timeout on my WebClient, here is the current code : SslContext sslContext = SslContextBuilder.forClient().trustManager(InsecureTrustManagerFactory.INSTANCE).…

spring reactor spring-webflux reactor-netty
What are worker threads, and what is their role in the reactor pattern?

I'm trying to understand the Reactor pattern (concurrent), but in many examples they are talking about 'worker threads'. What are …

java multithreading design-patterns reactor
Stop twisted reactor on a condition

Is there a way to stop the twisted reactor when a certain condition is reached. For example, if a variable …

twisted reactor
Netflix RxJava vs Spring Reactor

I am evaluating reactor library for using it in our project. I googled a lot but couldn't find the difference(…

reactor
How to get Flux or List from two Flux(Object) in Spring Reactive Programming?

I am new to Spring Reactive Project. In my Spring Boot Controller class I have Flux<House> ( list …

spring-boot spring-webflux project-reactor reactor
Project Reactor conditional execution

I have an object to save (to MongoDB), but before it I need to check if some conditions are true. …

java mongodb project-reactor reactive reactor
How does Python's Twisted Reactor work?

Recently, I've been diving into the Twisted docs. From what I gathered, the basis of Twisted's functionality is the result …

python twisted event-loop reactor