Package reactor.function
Interface Function6<T1,T2,T3,T4,T5,T6,R>
- Type Parameters:
T1- The type of the first input to the functionT2- The type of the second input to the functionT3- The type of the third input to the functionT4- The type of the fourth input to the functionT5- The type of the fifth input to the functionT6- The type of the sixth input to the functionR- the type of the result of the function
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a function that accepts six arguments and produces a result.
- Author:
- Ben Hale
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
t1- the first input argumentt2- the second input argumentt3- the third input argumentt4- the fourth input argumentt5- the fifth input argumentt6- the sixth input argument- Returns:
- the function result
-