Package | Description |
---|---|
ratpack.exec |
The execution management.
|
ratpack.handling |
The handling of application requests.
|
ratpack.logging | |
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.
|
static Execution |
Execution.execution()
Provides the currently execution execution.
|
Execution |
ExecControl.getExecution() |
Modifier and Type | Method and Description |
---|---|
void |
ExecInterceptor.intercept(Execution execution,
ExecInterceptor.ExecType execType,
NoArgAction continuation)
Intercepts the “rest” of the execution on the current thread.
|
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 |
---|---|
void |
MDCInterceptor.intercept(Execution execution,
ExecInterceptor.ExecType type,
NoArgAction continuation) |
Modifier and Type | Method and Description |
---|---|
default Execution |
ExecHarness.getExecution() |