У меня следующая проблема.Мне нужно построить моно из моего метода.Как мне это сделать?
public Mono<Model> foo() {
//First call a service that gives Mono<A>
Mono<A> a = << service that returns Mono<A> >>
// Check if a's attribute isEligible is true
// If true, then call another service that
// gives a Mono<B>
//Create new C and set A's instance and B's
// instance onto C, then return Mono<C>
}