Uses of Interface
org.flowable.batch.api.Batch
Packages that use Batch
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
: Manages Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.TaskService
: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService
: Used for managing users, groups and the relations between them.ManagementService
: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService
: Exposes information about ongoing and past process instances.FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.-
Uses of Batch in org.flowable.batch.api
Methods in org.flowable.batch.api that return BatchModifier and TypeMethodDescriptionBatchService.completeBatch
(String batchId, String status) BatchBuilder.create()
BatchService.updateBatch
(Batch batch) Methods in org.flowable.batch.api that return types with arguments of type BatchModifier and TypeMethodDescriptionBatchService.findBatchesByQueryCriteria
(BatchQuery batchQuery) BatchService.findBatchesBySearchKey
(String searchKey) BatchService.getAllBatches()
Methods in org.flowable.batch.api with parameters of type BatchModifier and TypeMethodDescriptionBatchService.createBatchPart
(Batch batch, String status, String scopeId, String subScopeId, String scopeType) void
BatchService.insertBatch
(Batch batch) BatchService.updateBatch
(Batch batch) -
Uses of Batch in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return BatchModifier and TypeMethodDescriptionCmmnMigrationService.batchMigrateCaseInstancesOfCaseDefinition
(String caseDefinitionKey, int caseDefinitionVersion, String caseDefinitionTenantId, CaseInstanceMigrationDocument caseInstanceMigrationDocument) CmmnMigrationService.batchMigrateCaseInstancesOfCaseDefinition
(String caseDefinitionId, CaseInstanceMigrationDocument caseInstanceMigrationDocument) CmmnMigrationService.batchMigrateHistoricCaseInstancesOfCaseDefinition
(String caseDefinitionKey, int caseDefinitionVersion, String caseDefinitionTenantId, HistoricCaseInstanceMigrationDocument historicCaseInstanceMigrationDocument) CmmnMigrationService.batchMigrateHistoricCaseInstancesOfCaseDefinition
(String caseDefinitionId, HistoricCaseInstanceMigrationDocument historicCaseInstanceMigrationDocument) Methods in org.flowable.cmmn.api with parameters of type Batch -
Uses of Batch in org.flowable.cmmn.api.migration
Methods in org.flowable.cmmn.api.migration that return BatchModifier and TypeMethodDescriptionCaseInstanceMigrationBuilder.batchMigrateCaseInstances
(String caseDefinitionId) Starts the case instance migration for all case instances of a given case definition identified by the case definition id.CaseInstanceMigrationBuilder.batchMigrateCaseInstances
(String caseDefinitionKey, int caseDefinitionVersion, String caseDefinitionTenantId) Asynchronously starts the case instance migration for each case instances of a given case definition identified by the case definition key and version (optional tenantId).HistoricCaseInstanceMigrationBuilder.batchMigrateHistoricCaseInstances
(String caseDefinitionId) Starts the case instance migration for all case instances of a given case definition identified by the case definition id.HistoricCaseInstanceMigrationBuilder.batchMigrateHistoricCaseInstances
(String caseDefinitionKey, int caseDefinitionVersion, String caseDefinitionTenantId) Asynchronously starts the case instance migration for each case instances of a given case definition identified by the case definition key and version (optional tenantId). -
Uses of Batch in org.flowable.engine
Methods in org.flowable.engine that return BatchModifier and TypeMethodDescriptionProcessMigrationService.batchMigrateProcessInstancesOfProcessDefinition
(String processDefinitionKey, int processDefinitionVersion, String processDefinitionTenantId, ProcessInstanceMigrationDocument processInstanceMigrationDocument) ProcessMigrationService.batchMigrateProcessInstancesOfProcessDefinition
(String processDefinitionId, ProcessInstanceMigrationDocument processInstanceMigrationDocument) Methods in org.flowable.engine that return types with arguments of type BatchModifier and TypeMethodDescriptionManagementService.findBatchesBySearchKey
(String searchKey) ManagementService.getAllBatches()
Methods in org.flowable.engine with parameters of type Batch -
Uses of Batch in org.flowable.engine.migration
Methods in org.flowable.engine.migration that return BatchModifier and TypeMethodDescriptionProcessInstanceMigrationBuilder.batchMigrateProcessInstances
(String processDefinitionId) Starts the process instance migration for all process instances of a given process definition identified by the process definition id.ProcessInstanceMigrationBuilder.batchMigrateProcessInstances
(String processDefinitionKey, int processDefinitionVersion, String processDefinitionTenantId) Asynchronously starts the process instance migration for each process instances of a given process definition identified by the process definition key and version (optional tenantId).ProcessInstanceMigrationManager.batchMigrateProcessInstancesOfProcessDefinition
(String procDefKey, int procDefVer, String procDefTenantId, ProcessInstanceMigrationDocument document, org.flowable.common.engine.impl.interceptor.CommandContext commandContext) ProcessInstanceMigrationManager.batchMigrateProcessInstancesOfProcessDefinition
(String processDefinitionId, ProcessInstanceMigrationDocument document, org.flowable.common.engine.impl.interceptor.CommandContext commandContext)