You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know this is kind of irrelevant here, but i don't know any other channel to ask Reactor 3 questions. If you know a place i can ask my question feel free to share :)
So, i'd like to refactor my code, which consists of 3 Publishers (ReactiveMongoRepository responses), and i need all the responses from the repository in the same context to make calculations on them. Other difficulty is that 1 of the publisher is not the same type as the others (2 Mono, 1 Mono). How can i compose these publishers into one single stream in a form that i can access all the three values?
One more thing: does it make any sense to use .publishOn(Schedulers.parallel()) at all the three repository requests?
I know this is kind of irrelevant here, but i don't know any other channel to ask Reactor 3 questions. If you know a place i can ask my question feel free to share :)
So, i'd like to refactor my code, which consists of 3 Publishers (ReactiveMongoRepository responses), and i need all the responses from the repository in the same context to make calculations on them. Other difficulty is that 1 of the publisher is not the same type as the others (2 Mono, 1 Mono). How can i compose these publishers into one single stream in a form that i can access all the three values?
One more thing: does it make any sense to use
.publishOn(Schedulers.parallel())
at all the three repository requests?It looks like this:
The text was updated successfully, but these errors were encountered: