I'm new in reactive programming in java and I'm trying to make an microservice that aggregate calls from 3 other microservices.
I can't figure out how to handle this 3 rest calls in asynchronous way and then aggregate the result. I have a simple business all the three methods returns boolean and I want to make an or on them.
Can I do this in Java with Spring boot 2?
Thanks