Interface InterruptibleCheckedFunction<T,R,E extends Exception>
- 
- Type Parameters:
 T- The type of the input to be processed.R- The type of the result to be returned.E- The type of the exception which may be thrown.
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface InterruptibleCheckedFunction<T,R,E extends Exception>
Functionwhich can throw a checked exception and be interrupted. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T input) 
 - 
 
- 
- 
Method Detail
- 
apply
R apply(T input) throws E extends Exception, InterruptedException
- Throws:
 E extends ExceptionInterruptedException
 
 - 
 
 -