Package hu.akarnokd.rxjava3.functions
Interface Consumer3<T1,T2,T3>
-
- Type Parameters:
T1- the first value typeT2- the second value typeT3- the third value type
public interface Consumer3<T1,T2,T3>Functional interface for a callback that consumes multipe values at the same and may throw a checked exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T1 t1, T2 t2, T3 t3)Consum the input parameters.
-