All Questions
4 questions
2
votes
0
answers
172
views
Java Project Reactor/WebFlux token service
I'm trying to achieve a thread-safe reactive token service. The point is that all subscribers must wait until the token is received or updated (when expired). It works, but I want a second opinion ...
-2
votes
1
answer
399
views
How generate a random pojo value using reactor.core.publisher.Flux and reactor.util.function.Tuples [closed]
Firstly, take in account is my first question here in CodeReview. Any purpose misuderstanding will be highly appreciated if orientaded.
Scenario: I want to answer randomly a pojo (json with two ...
3
votes
0
answers
3k
views
Implementation of reactive file write from InputStream
I want to implement reactive write to file.
In low level, it uses NIO and Futures.
After reading this section
I created this code but maybe there's more clean or less code solution.
Thanks.
...
3
votes
1
answer
6k
views
Is my implementation of a simple CRUD service with Spring WebFlux correct?
I am implementing a simple Movie based CRUD API using Spring WebFlux and Reactive Spring Data MongoDB. I want to make sure that my implementation is correct and that I am properly using Flux and Mono ...