Interface FunctionRaisingIOE<T,R>
- Type Parameters:
T- type of arg1R- 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 1 which may raise an IOException.
-
Method Summary
-
Method Details
-
apply
Apply the function.- Parameters:
t- argument 1- Returns:
- result
- Throws:
IOException- Any IO failure
-
unchecked
Apply unchecked.- Parameters:
t- argument- Returns:
- the evaluated function
- Throws:
UncheckedIOException- IOE raised.
-