Interface ProcessInstanceRepository
public interface ProcessInstanceRepository
-
Method Summary
Modifier and TypeMethodDescriptionvoidbulkImport(String bulkRequestName, List<ImportRequestDto> importRequests) voiddeleteByIds(String index, String itemName, List<String> processInstanceIds) getFirstPageOfProcessInstanceIdsThatEndedBefore(String processDefinitionKey, OffsetDateTime endDate, Integer limit) getFirstPageOfProcessInstanceIdsThatHaveVariablesAndEndedBefore(String processDefinitionKey, OffsetDateTime endDate, Integer limit) getNextPageOfProcessInstanceIds(PageResultDto<String> previousPage, Supplier<PageResultDto<String>> firstPageFetchFunction) booleanprocessDefinitionHasStartedInstances(String processDefinitionKey)
-
Method Details
-
deleteByIds
-
bulkImport
-
processDefinitionHasStartedInstances
-
getNextPageOfProcessInstanceIds
PageResultDto<String> getNextPageOfProcessInstanceIds(PageResultDto<String> previousPage, Supplier<PageResultDto<String>> firstPageFetchFunction) -
getFirstPageOfProcessInstanceIdsThatHaveVariablesAndEndedBefore
PageResultDto<String> getFirstPageOfProcessInstanceIdsThatHaveVariablesAndEndedBefore(String processDefinitionKey, OffsetDateTime endDate, Integer limit) -
getFirstPageOfProcessInstanceIdsThatEndedBefore
PageResultDto<String> getFirstPageOfProcessInstanceIdsThatEndedBefore(String processDefinitionKey, OffsetDateTime endDate, Integer limit)
-