Package | Description |
---|---|
ratpack.exec |
The execution management.
|
ratpack.handling |
The handling of application requests.
|
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 |
ExecControl.fork()
Initiates a new
execution . |
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.register(Action<? super RegistrySpec> action)
Populates the execution's registry.
|
Modifier and Type | Method and Description |
---|---|
ExecBuilder |
Context.fork()
Forks a new execution, detached from the current.
|
Modifier and Type | Method and Description |
---|---|
default ExecBuilder |
ExecHarness.fork()
Initiates a new
execution . |