| Package | Description |
|---|---|
| ratpack.exec |
The execution management.
|
| ratpack.handling |
The handling of application requests.
|
| ratpack.test.exec |
| Modifier and Type | Method and Description |
|---|---|
default <O> Execution |
Execution.add(Class<? super O> type,
O object)
Adds a registry entry that is available by the given type.
|
default Execution |
Execution.add(Object object)
Adds a registry entry.
|
default <O> Execution |
Execution.add(TypeToken<? super O> type,
O object)
Adds a registry entry that is available by the given type.
|
default <O> Execution |
Execution.addLazy(Class<O> type,
Supplier<? extends O> supplier)
Adds a lazily created entry to the registry.
|
<O> Execution |
Execution.addLazy(TypeToken<O> type,
Supplier<? extends O> supplier)
Adds a lazily created entry to the registry.
|
Execution |
ExecControl.getExecution() |
| Modifier and Type | Method and Description |
|---|---|
ExecStarter |
ExecStarter.onComplete(Action<? super Execution> onComplete) |
void |
ExecStarter.start(Action<? super Execution> action) |
| Modifier and Type | Method and Description |
|---|---|
Execution |
Context.getExecution()
The execution of handling this request.
|
| Modifier and Type | Method and Description |
|---|---|
default Execution |
ExecHarness.getExecution() |