public interface PipelineResult
Pipeline.run().| Modifier and Type | Interface and Description |
|---|---|
static class |
PipelineResult.State
Named constants for common values for the job state.
|
| Modifier and Type | Method and Description |
|---|---|
<T> AggregatorValues<T> |
getAggregatorValues(Aggregator<?,T> aggregator)
Retrieves the current value of the provided
Aggregator. |
PipelineResult.State |
getState()
Retrieves the current state of the pipeline execution.
|
PipelineResult.State getState()
PipelineResult.State representing the state of this pipeline.<T> AggregatorValues<T> getAggregatorValues(Aggregator<?,T> aggregator) throws AggregatorRetrievalException
Aggregator.aggregator - the Aggregator to retrieve values for.Aggregator,
which may be empty if there are no values yet.AggregatorRetrievalException - if the Aggregator values could not be retrieved.