How do you create a Reactor Tuple, such as reactor.util.function.Tuple2<T1,T2> ?
Use reactor.util.function.Tuples.of(T1 t1, T2 t2)
Note that it uses the Tuples class.
Method signature:
static <T1,T2> Tuple2<T1,T2> of(T1 t1, T2 t2)
More methods and constructors available in the Javadoc