Package | Description |
---|---|
ratpack.exec | |
ratpack.handling |
The handling of application requests.
|
Modifier and Type | Method and Description |
---|---|
Execution |
ExecController.getExecution()
Provides the current context on the current thread.
|
Modifier and Type | Method and Description |
---|---|
void |
Execution.addInterceptor(ExecInterceptor execInterceptor,
Action<? super Execution> continuation)
Adds an interceptor that wraps the rest of the current execution segment and all future segments of this execution.
|
void |
ExecControl.fork(Action<? super Execution> action)
Forks a new execution on a separate thread.
|
void |
ExecController.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 |
Context.fork(Action<? super Execution> action)
Forks a new execution, detached from the current.
|