Uses of Interface
org.camunda.bpm.engine.batch.history.HistoricBatchQuery
Package
Description
Public API of the Camunda Platform 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
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Classes related to the
HistoryService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionHistoryService.createHistoricBatchQuery()
Creates a query to search forHistoricBatch
instances. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.batch.history
Modifier and TypeMethodDescriptionOnly select historic batch instances for the given batch id.HistoricBatchQuery.completed
(boolean completed) Only select historic batches which are completed or not.HistoricBatchQuery.orderByEndTime()
Returns historic batches sorted by end time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery.orderById()
Returns historic batches sorted by id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery.orderByStartTime()
Returns historic batches sorted by start time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery.orderByTenantId()
Returns historic batches sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery.tenantIdIn
(String... tenantIds) Only selects historic batches with one of the given tenant ids.Only select historic batches of the given type.HistoricBatchQuery.withoutTenantId()
Only selects historic batches which have no tenant id. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.history
Modifier and TypeMethodDescriptionSetRemovalTimeToHistoricBatchesBuilder.byQuery
(HistoricBatchQuery historicBatchQuery) Selects historic batches by the given query. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.batch.history
Modifier and TypeMethodDescriptionHistoricBatchQueryImpl.completed
(boolean completed) HistoricBatchQueryImpl.orderByEndTime()
HistoricBatchQueryImpl.orderById()
HistoricBatchQueryImpl.orderByStartTime()
HistoricBatchQueryImpl.orderByTenantId()
HistoricBatchQueryImpl.tenantIdIn
(String... tenantIds) HistoricBatchQueryImpl.withoutTenantId()
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.cmd.batch.removaltime
Modifier and TypeMethodDescriptionprotected HistoricBatchQuery
SetRemovalTimeToHistoricBatchesCmd.createHistoricBatchQuery
(CommandContext commandContext) -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.history
Modifier and TypeFieldDescriptionprotected HistoricBatchQuery
SetRemovalTimeToHistoricBatchesBuilderImpl.query
Modifier and TypeMethodDescriptionSetRemovalTimeToHistoricBatchesBuilderImpl.byQuery
(HistoricBatchQuery query) -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.rest.dto.history.batch
Modifier and TypeMethodDescriptionprotected HistoricBatchQuery
HistoricBatchQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
HistoricBatchQueryDto.applyFilters
(HistoricBatchQuery query) protected void
HistoricBatchQueryDto.applySortBy
(HistoricBatchQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine)