Package | Description |
---|---|
ratpack.exec |
The execution management.
|
ratpack.groovy.handling |
Groovy specific extensions to classes in the
ratpack.handling package. |
ratpack.handling |
The handling of application requests.
|
ratpack.rx |
Provides integration with the RxJava library.
|
ratpack.test.exec |
Modifier and Type | Method and Description |
---|---|
ExecControl |
ExecController.getControl()
A singleton that can be used from any managed thread to perform asynchronous or blocking operations.
|
ExecControl |
Execution.getControl() |
Modifier and Type | Interface and Description |
---|---|
interface |
GroovyContext
Subclass of
Context that adds Groovy friendly variants of methods. |
Modifier and Type | Interface and Description |
---|---|
interface |
Context
The context of an individual
Handler invocation. |
Modifier and Type | Method and Description |
---|---|
static <T> Observable<T> |
RxRatpack.forkAndJoin(ExecControl execControl,
Observable<T> source)
Forks the current execution in order to subscribe to the given source, then joining the original execution with the source values.
|
static <T> Observable.Operator<T,T> |
RxRatpack.forkOnNext(ExecControl execControl)
An operator to parallelize an observable stream by forking a new execution for each omitted item.
|
static <T> Observable<T> |
RxRatpack.forkOnNext(ExecControl execControl,
Observable<T> observable)
Alternative method for forking the execution to process each observable element.
|
Modifier and Type | Method and Description |
---|---|
ExecControl |
ExecHarness.getControl()
The execution control for the harness.
|