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