Module org.junit.platform.engine
Interface NodeTestTask.DynamicTaskState
-
- Enclosing class:
- NodeTestTask<C extends EngineExecutionContext>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface private static interface NodeTestTask.DynamicTaskState
-
-
Field Summary
Fields Modifier and Type Field Description static NodeTestTask.DynamicTaskState
UNSCHEDULED
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description void
awaitFinished()
static NodeTestTask.DynamicTaskState
scheduled(java.util.concurrent.Future<java.lang.Void> future)
static NodeTestTask.DynamicTaskState
unscheduled()
-
-
-
Field Detail
-
UNSCHEDULED
static final NodeTestTask.DynamicTaskState UNSCHEDULED
-
-
Method Detail
-
unscheduled
static NodeTestTask.DynamicTaskState unscheduled()
-
scheduled
static NodeTestTask.DynamicTaskState scheduled(java.util.concurrent.Future<java.lang.Void> future)
-
awaitFinished
void awaitFinished() throws java.util.concurrent.CancellationException, java.util.concurrent.ExecutionException, java.lang.InterruptedException
- Throws:
java.util.concurrent.CancellationException
java.util.concurrent.ExecutionException
java.lang.InterruptedException
-
-