Package org.opendaylight.infrautils.utils.function
-
Interface Summary Interface Description CheckedBiConsumer<T,U,E extends Exception> Represents an operation that accepts two input arguments and returns no result, but can throw a checked exception.CheckedCallable<V,E extends Exception> CheckedConsumer<T,E extends Exception> Consumerwhich can throw a checked exception.CheckedFunction<T,R,E extends Exception> Functionwhich can throw a checked exception.CheckedRunnable<E extends Exception> Functional interface similar toRunnable(but not technically extending Runnable, because it cannot; and doesn't have to) which can throw a generically parameterized type of checked exception.InterruptibleCheckedConsumer<T,E extends Exception> Consumerwhich can throw a checked exception and be interrupted.InterruptibleCheckedFunction<T,R,E extends Exception> Functionwhich can throw a checked exception and be interrupted.