| Package | Description |
|---|---|
| org.arquillian.spacelift.execution | |
| org.arquillian.spacelift.task |
| Modifier and Type | Class and Description |
|---|---|
class |
TimeoutExecutionException |
| Modifier and Type | Method and Description |
|---|---|
ExecutionException |
ExecutionException.prependMessage(String messageFormat,
Object... parameters)
Allows to modify the message of current exception.
|
| Modifier and Type | Method and Description |
|---|---|
RESULT |
Execution.await()
Blocks execution of current thread, waiting for the execution to be finished.
|
RESULT |
Execution.awaitAtMost(CountDownWatch timeout)
Blocks execution of current thread, waiting for the execution to be finished.
|
RESULT |
Execution.awaitAtMost(long timeout,
TimeUnit unit)
Blocks execution of current thread, waiting for the execution to be finished.
|
<T> Execution<T> |
ExecutionService.execute(Callable<T> task)
Executes a task asynchronously.
|
boolean |
ExecutionCondition.satisfiedBy(RESULT object)
Evaluates a condition using
object |
<T> Execution<T> |
ExecutionService.schedule(Callable<T> task,
long delay,
TimeUnit unit)
Schedules a task to be executed periodically until
breakCondition is evaluate to true or timeout is
reached. |
Execution<RESULT> |
Execution.terminate()
Immediately terminates execution evaluation.
|
RESULT |
Execution.until(CountDownWatch timeout,
ExecutionCondition<RESULT> condition)
Continues (re)executing the execution until condition is satisfied.
|
RESULT |
Execution.until(long timeout,
TimeUnit unit,
ExecutionCondition<RESULT> condition)
Continues (re)executing the execution until condition is satisfied.
|
| Modifier and Type | Method and Description |
|---|---|
Execution<OUT> |
Task.execute()
Asynchronously executes current chain of tasks.
|
protected OUT |
Task.run()
Transforms a chain of tasks into action that will be executed asynchronously.
|
Copyright © 2015 JBoss by Red Hat. All rights reserved.