Package | Description |
---|---|
ratpack.exec |
The execution management.
|
ratpack.session |
Objects for providing
Session support |
ratpack.test.exec |
Modifier and Type | Method and Description |
---|---|
default Operation |
ExecControl.blockingOperation(Block block) |
default Operation |
Operation.next(Block operation) |
default Operation |
Operation.next(Operation operation) |
static Operation |
Operation.noop() |
static Operation |
Operation.of(Block block) |
Operation |
Operation.onError(Action<? super Throwable> onError) |
default Operation |
Promise.operation() |
default Operation |
Promise.operation(Action<? super T> action) |
default Operation |
ExecControl.operation(Block operation) |
Modifier and Type | Method and Description |
---|---|
default Operation |
Operation.next(Operation operation) |
Modifier and Type | Method and Description |
---|---|
Operation |
SessionStore.remove(AsciiString sessionId)
Removes the session data for the given id.
|
Operation |
Session.save()
Persists the session data.
|
default Operation |
SessionData.save()
See
Session.save() . |
Operation |
SessionStore.store(AsciiString sessionId,
ByteBuf sessionData)
Writes the session data for the given id.
|
Operation |
Session.terminate()
Terminates the session and session id.
|
default Operation |
SessionData.terminate()
See
Session.terminate() . |
Modifier and Type | Method and Description |
---|---|
default void |
ExecHarness.execute(Operation operation) |
static void |
ExecHarness.executeSingle(Operation operation) |
Modifier and Type | Method and Description |
---|---|
default void |
ExecHarness.execute(Function<? super ExecControl,? extends Operation> function) |
static void |
ExecHarness.executeSingle(Function<? super ExecControl,? extends Operation> function) |