Uses of Interface
org.camunda.bpm.engine.batch.BatchStatisticsQuery
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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of BatchStatisticsQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionManagementService.createBatchStatisticsQuery()
Query for the statistics of the batch execution jobs of a batch. -
Uses of BatchStatisticsQuery in org.camunda.bpm.engine.batch
Modifier and TypeMethodDescriptionBatchStatisticsQuery.active()
Only selects batches which are activeOnly select batch statistics for the given batch id.Only selects batches that are started by the given user idBatchStatisticsQuery.orderById()
Returns batch statistics sorted by batch id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.BatchStatisticsQuery.orderByStartTime()
Returns batch statistics sorted by start time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.BatchStatisticsQuery.orderByTenantId()
Returns batch statistics sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.BatchStatisticsQuery.startedAfter
(Date date) Only select historic activity instances that were started after the given date.BatchStatisticsQuery.startedBefore
(Date date) Only select historic activity instances that were started before the given date.BatchStatisticsQuery.suspended()
Only selects batches which are suspendedBatchStatisticsQuery.tenantIdIn
(String... tenantIds) Only selects batch statistics with one of the given tenant ids.Only select batch statistics of the given type.BatchStatisticsQuery.withFailures()
Only selects batches with failed jobsBatchStatisticsQuery.withoutFailures()
Only selects batches without failed jobsBatchStatisticsQuery.withoutTenantId()
Only selects batch statistics which have no tenant id. -
Uses of BatchStatisticsQuery in org.camunda.bpm.engine.impl
-
Uses of BatchStatisticsQuery in org.camunda.bpm.engine.impl.batch
Modifier and TypeMethodDescriptionBatchStatisticsQueryImpl.active()
BatchStatisticsQueryImpl.orderById()
BatchStatisticsQueryImpl.orderByStartTime()
BatchStatisticsQueryImpl.orderByTenantId()
BatchStatisticsQueryImpl.startedAfter
(Date date) BatchStatisticsQueryImpl.startedBefore
(Date date) BatchStatisticsQueryImpl.suspended()
BatchStatisticsQueryImpl.tenantIdIn
(String... tenantIds) BatchStatisticsQueryImpl.withFailures()
BatchStatisticsQueryImpl.withoutFailures()
BatchStatisticsQueryImpl.withoutTenantId()
-
Uses of BatchStatisticsQuery in org.camunda.bpm.engine.rest.dto.batch
Modifier and TypeMethodDescriptionprotected BatchStatisticsQuery
BatchStatisticsQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
BatchStatisticsQueryDto.applyFilters
(BatchStatisticsQuery query) protected void
BatchStatisticsQueryDto.applySortBy
(BatchStatisticsQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine)