| Constructor and Description |
|---|
SupplierExecutionBuilder(Supplier<RESULT> lambda,
List<Object> params,
ExecutionContext context)
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
<RESULT> RESULT |
StaticExecutionBuilderFactory.execute(Supplier<RESULT> lambda)
Starts the execution build for a
Supplier. |
<UNPARSED_RESULT,RESULT> |
StaticExecutionBuilderFactory.execute(Supplier<UNPARSED_RESULT> lambda,
Parser<UNPARSED_RESULT,RESULT> resultParser)
|
| Modifier and Type | Method and Description |
|---|---|
RESULT |
ExecutionContext.execute(Supplier<RESULT> operation,
List<Object> params)
|
| Modifier and Type | Method and Description |
|---|---|
RESULT |
Executor.execute(Supplier<RESULT> lambda,
List<Object> params,
List<PreExecutionListener> preExecutionListeners,
List<PostExecutionListener<RESULT>> postExecutionListeners,
List<DefinedExceptionHandler<?>> exceptionHandlers)
Executes the passed
Supplier over the provided ExecutionContext. |
RESULT |
BlockingExecutor.execute(Supplier<RESULT> lambda,
List<Object> params,
List<PreExecutionListener> preExecutionListeners,
List<PostExecutionListener<RESULT>> postExecutionListeners,
List<DefinedExceptionHandler<?>> exceptionHandlers) |
| Modifier and Type | Method and Description |
|---|---|
default Supplier<RESULT> |
Function.downgrade(A a) |
| Modifier and Type | Method and Description |
|---|---|
default Supplier<Void> |
Runnable.toSupplier()
Converts this into a
Supplier that always returns null. |
| Modifier and Type | Method and Description |
|---|---|
default <AFTER_RESULT> |
Supplier.andThen(Function<? super RESULT,? extends AFTER_RESULT> after)
Returns a composed function that first applies this function to its input, and then applies the
after
function to the result. |
Copyright © 2018. All rights reserved.