Package | Description |
---|---|
ratpack.exec |
The execution management.
|
ratpack.test.exec |
Modifier and Type | Method and Description |
---|---|
ExecBuilder |
ExecBuilder.eventLoop(EventLoop eventLoop)
Specifies that the execution must run on the given event loop.
|
ExecBuilder |
ExecController.exec() |
static ExecBuilder |
Execution.fork() |
ExecBuilder |
ExecBuilder.onComplete(Action<? super Execution> onComplete)
Specifies the completion callback for the execution.
|
ExecBuilder |
ExecBuilder.onError(Action<? super Throwable> onError)
Specify the top level error handler for the execution.
|
ExecBuilder |
ExecBuilder.onError(BiAction<? super Execution,? super Throwable> onError)
Specify the top level error handler for the execution.
|
ExecBuilder |
ExecBuilder.onStart(Action<? super Execution> onStart)
Specifies an action to be taken just before the execution starts.
|
ExecBuilder |
ExecBuilder.register(Action<? super RegistrySpec> action)
Populates the execution's registry.
|
Modifier and Type | Method and Description |
---|---|
default ExecBuilder |
ExecHarness.exec() |