@FunctionalInterface
public interface ThrowingRunnable<E extends java.lang.Exception>
Runnable
that optionally throws an exception.
Together with Java's type inference this interface is very useful
for many cases, where using Callable
would be to unspecific and
using Runnable
would require extra handling of checked exceptionsModifier and Type | Method | Description |
---|---|---|
void |
run() |
Gets a result.
|