Modifier and Type | Method and Description |
---|---|
List<WorkflowExecution> |
SetExpiryCheckResponseDTO.getWorkflowsPotentiallyPruned()
Returns amount of workflow executions that may be deleted
|
Constructor and Description |
---|
SetExpiryCheckResponseDTO(int nonWorkflowLogsPotentiallyPruned,
List<WorkflowExecution> workflowsPotentiallyPruned,
int workflowLogsPotentiallyPruned)
Ctr
|
Modifier and Type | Method and Description |
---|---|
Optional<WorkflowExecution> |
WorkflowExecutionDAO.find(String workflowExecutionId)
Queries a workflow by a given ID.
|
List<WorkflowExecution> |
WorkflowExecutionDAO.getAll()
Returns all persisted workflow executions
|
List<WorkflowExecution> |
PruneCheckingDAO.getPotentiallyDeletedWorkflows(double pruneAfter)
Get workflow executions that would be deleted if settings were changed to a given value
|
Modifier and Type | Method and Description |
---|---|
Long |
WorkflowExecutionDAO.delete(WorkflowExecution workflowExecution)
Deletes a workflow execution.
|
Long |
WorkflowExecutionDAO.save(WorkflowExecution workflowExecution)
Insert a new workflow execution to the repository
|
Modifier and Type | Method and Description |
---|---|
Integer |
PruneCheckingDAO.getAmountOfPotentiallyDeletedWorkflowLogs(double pruneAfter,
List<WorkflowExecution> deletedWorkflowExecutions)
Get amount of logs that would be deleted that belong to passed workflow executions
|
Modifier and Type | Method and Description |
---|---|
Optional<WorkflowExecution> |
WorkflowExecutionDAOImpl.find(String workflowExecutionId) |
List<WorkflowExecution> |
WorkflowExecutionDAOImpl.getAll() |
List<WorkflowExecution> |
PruneCheckingDAOImpl.getPotentiallyDeletedWorkflows(double pruneAfter) |
Modifier and Type | Method and Description |
---|---|
Long |
WorkflowExecutionDAOImpl.delete(WorkflowExecution workflowExecution) |
Long |
WorkflowExecutionDAOImpl.save(WorkflowExecution workflowExecution) |
Modifier and Type | Method and Description |
---|---|
Integer |
PruneCheckingDAOImpl.getAmountOfPotentiallyDeletedWorkflowLogs(double pruneAfter,
List<WorkflowExecution> deletedWorkflowExecutions) |
Modifier and Type | Method and Description |
---|---|
WorkflowExecution |
WorkflowExecutionsMapper.getWorkflowById(String workflowExecutionId)
Queries a workflow execution by ID.
|
Modifier and Type | Method and Description |
---|---|
List<WorkflowExecution> |
WorkflowExecutionsMapper.getAllWorkflowExecutions()
Queries all workflow executions
|
List<WorkflowExecution> |
PruneMapper.getAmountOfPotentiallyDeletedWorkflows(double pruneAfter)
Get workflow executions that would be deleted if settings were changed to a given value
|
Modifier and Type | Method and Description |
---|---|
Long |
WorkflowExecutionsMapper.deleteWorkflow(WorkflowExecution workflowExecution)
Deletes a workflow from workflow executions.
|
Long |
WorkflowExecutionsMapper.insertWorkflowExecution(WorkflowExecution workflowExecution)
Inserts a new workflow execution.
|
Modifier and Type | Method and Description |
---|---|
Integer |
PruneMapper.getAmountOfPotentiallyDeletedWorkflowLogs(double pruneAfter,
List<WorkflowExecution> workflowExecutions)
Get amount of logs that would be deleted that belong to passed workflow executions
|
Modifier and Type | Method and Description |
---|---|
void |
PruneService.dropPruningFor(WorkflowExecution workflowExecution)
Drop pruning for a given workflow execution
|
PruneServiceImpl.PruneTask |
PruneService.newPruningTask(WorkflowExecution workflowExecution,
Date date)
Creates a new pruning task, which is then registered in the spring task scheduler.
|
void |
PruneService.schedulePruning(WorkflowExecution workflowExecution)
Schedules pruning for a single workflow execution.
|
Modifier and Type | Method and Description |
---|---|
WorkflowExecution |
PruneServiceImpl.PruneTask.getWorkflowExecution() |
Modifier and Type | Method and Description |
---|---|
void |
PruneServiceImpl.dropPruningFor(WorkflowExecution workflowExecution) |
PruneServiceImpl.PruneTask |
PruneServiceImpl.newPruningTask(WorkflowExecution workflowExecution,
Date date) |
protected void |
PruneServiceImpl.prune(WorkflowExecution workflowExecution) |
void |
PruneServiceImpl.schedulePruning(WorkflowExecution workflowExecution) |
Constructor and Description |
---|
PruneTask(WorkflowExecution workflowExecution,
Date triggerDate)
Pruning task
|
Copyright © 2020. All rights reserved.