Module life.expert
Class ForComprehension.MonoFor3<T1,T2,T3>
- java.lang.Object
-
- life.expert.common.reactivestreams.ForComprehension.MonoFor3<T1,T2,T3>
-
- Type Parameters:
T1- the type parameterT2- the type parameterT3- the type parameter
- Enclosing class:
- ForComprehension
public static class ForComprehension.MonoFor3<T1,T2,T3> extends java.lang.ObjectFor-comprehension with three Monos.
-
-
Method Detail
-
yield
public <R> reactor.core.publisher.Mono<R> yield(io.vavr.Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Monos.- Type Parameters:
R- type of the resultingMonoelements- Parameters:
f- a function that maps an element of the cross product to a result- Returns:
- an
Monoof mapped results
-
-