Package | Description |
---|---|
ratpack.exec.util | |
ratpack.func |
General functional (i.e. Single Abstract Method) types.
|
ratpack.util |
General purpose types and utilities.
|
Modifier and Type | Method and Description |
---|---|
Operation |
Batch.forEach(BiAction<? super Integer,? super T> consumer)
Processes the promises of the batch, stopping at the first error, emitting results to the given callback.
|
Operation |
ParallelBatch.forEach(BiAction<? super Integer,? super T> consumer)
Processes the promises of the batch, stopping at the first error, emitting results to the given callback.
|
Operation |
SerialBatch.forEach(BiAction<? super Integer,? super T> consumer)
Processes the promises of the batch, stopping at the first error, emitting results to the given callback.
|
Modifier and Type | Method and Description |
---|---|
static <T,U> BiAction<T,U> |
BiAction.from(BiConsumer<T,U> consumer)
Creates an bi-action from a JDK bi-consumer.
|
Modifier and Type | Method and Description |
---|---|
static <T,U> void |
Exceptions.uncheck(T input1,
U input2,
BiAction<T,U> action)
Executes the given action with the provided input arguments, unchecking any exceptions it throws.
|