Uses of Class
org.gbif.api.model.pipelines.PipelineProcess
-
Packages that use PipelineProcess Package Description org.gbif.api.model.pipelines org.gbif.api.service.pipelines -
-
Uses of PipelineProcess in org.gbif.api.model.pipelines
Fields in org.gbif.api.model.pipelines with type parameters of type PipelineProcess Modifier and Type Field Description static Comparator<PipelineProcess>
PipelineProcess. PIPELINE_PROCESS_BY_LATEST_EXEUCTION_ASC
Comparator that sorts the pipeline processes by the created date of the latest execution.static Comparator<PipelineProcess>
PipelineProcess. PIPELINE_PROCESS_BY_LATEST_STEP_RUNNING_ASC
Comparator that sorts pipeline processes by the start date of their latest step in ascending order.Methods in org.gbif.api.model.pipelines that return PipelineProcess Modifier and Type Method Description PipelineProcess
PipelineProcess. addExecution(PipelineExecution execution)
PipelineProcess
PipelineProcess. setAttempt(int attempt)
PipelineProcess
PipelineProcess. setCreated(LocalDateTime created)
PipelineProcess
PipelineProcess. setCreatedBy(String createdBy)
PipelineProcess
PipelineProcess. setDatasetKey(UUID datasetKey)
-
Uses of PipelineProcess in org.gbif.api.service.pipelines
Methods in org.gbif.api.service.pipelines that return PipelineProcess Modifier and Type Method Description PipelineProcess
PipelinesHistoryService. getPipelineProcess(@NotNull UUID datasetKey, int attempt)
Gets the PipelineProcess identified by the dataset and attempt identifiers.Methods in org.gbif.api.service.pipelines that return types with arguments of type PipelineProcess Modifier and Type Method Description PagingResponse<PipelineProcess>
PipelinesHistoryService. getRunningPipelineProcess(Pageable pageable)
Returns information about all running pipelines executionsPagingResponse<PipelineProcess>
PipelinesHistoryService. history(@NotNull UUID datasetKey, Pageable pageable)
Lists the history of allPipelineProcess
of a dataset, sorted descending from the most recent one.PagingResponse<PipelineProcess>
PipelinesHistoryService. history(Pageable pageable)
Lists the history of allPipelineProcess
, sorted descending from the most recent one.
-