Reactor is a foundational library building for reactive fast data applications on the JVM.
I'm using a spring flux to send parallel requests to a service, this is very simplified version of it: Flux.…
spring reactive-programming spring-webflux project-reactorI have a method that returns Mono<Output>: interface Processor { Mono<Output> process(Input input); } And …
java project-reactor reactorI'm trying to use WebFlux and I'm seeing a behavior I don't quite understand, I suspect this is a bug …
java spring project-reactor spring-webfluxInteresting things happen inside the webflux package. However, my journey in the source didn't solve the following question. Let's say …
java spring-webflux project-reactorSuppose I have a repository with a findAll() method that returns an Iterable of State, where State is a class …
java reactive-programming project-reactorI started using Project reactor and one place where I'm struggling little is how do I combine things coming from …
spring-webflux project-reactor reactive-streamsI have a question about Spring Reactive WebClient... Few days ago I decided to play with the new reactive stuff …
spring reactive-programming project-reactor spring-webfluxLet's say i have the following chain: public Mono<B> someMethod( Object arg ) { Mono<A> monoA = …
java reactive-programming project-reactor reactive-streamsCould someone help me to understand the difference between Mono.defer(), Mono.create() and Mono.just()? How to use it …
spring-webflux project-reactorIn a traditional web application it is easy to validate the request body in the controller method, eg. ResponseEntity create(@…
spring functional-programming bean-validation project-reactor spring-webflux