Interface Function2<I1,I2,O>
-
- Type Parameters:
I1
- First Input TypeI2
- Second Input TypeO
- Output Type
- All Known Implementing Classes:
AdBreakMapper
public interface Function2<I1,I2,O>
Function to create an output from two inputs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description O
apply(I1 input1, I2 input2)
ConvertsI1, I2
toO
.
-