Package org.eclipse.net4j.util
Interface RunnableWithException
- 
- 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 RunnableWithExceptionAn interface with arun()method that can propagate checked exceptions.- Since:
- 3.12
- Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static voidforkAndWait(RunnableWithException runnable)voidrun()
 
- 
- 
- 
Method Detail- 
runvoid run() throws java.lang.Exception - Throws:
- java.lang.Exception
 
 - 
forkAndWaitstatic void forkAndWait(RunnableWithException runnable) throws java.lang.Exception - Throws:
- java.lang.Exception
 
 
- 
 
-