Interface BiFunctionRaisingIOE<T,U,R>
- Type Parameters:
T- type of arg1U- type of arg2R- type of return value.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Function of arity 2 which may raise an IOException.
-
Method Summary
-
Method Details
-
apply
Apply the function.- Parameters:
t- argument 1u- argument 2- Returns:
- result
- Throws:
IOException- Any IO failure
-
unchecked
Apply unchecked.- Parameters:
t- argumentu- argument 2- Returns:
- the evaluated function
- Throws:
UncheckedIOException- IOE raised.
-