Interface HistoricBatchQuery
- All Superinterfaces:
Query<HistoricBatchQuery,
HistoricBatch>
- All Known Implementing Classes:
HistoricBatchQueryImpl
Query for
HistoricBatch
instances.-
Method Summary
Modifier and TypeMethodDescriptionOnly select historic batch instances for the given batch id.completed
(boolean completed) Only select historic batches which are completed or not.Returns historic batches sorted by end time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.Returns historic batches sorted by id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.Returns historic batches sorted by start time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.Returns historic batches sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.tenantIdIn
(String... tenantIds) Only selects historic batches with one of the given tenant ids.Only select historic batches of the given type.Only selects historic batches which have no tenant id.Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
Method Details
-
batchId
Only select historic batch instances for the given batch id. -
type
Only select historic batches of the given type. -
completed
Only select historic batches which are completed or not. -
tenantIdIn
Only selects historic batches with one of the given tenant ids. -
withoutTenantId
HistoricBatchQuery withoutTenantId()Only selects historic batches which have no tenant id. -
orderById
HistoricBatchQuery orderById()Returns historic batches sorted by id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
. -
orderByStartTime
HistoricBatchQuery orderByStartTime()Returns historic batches sorted by start time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
. -
orderByEndTime
HistoricBatchQuery orderByEndTime()Returns historic batches sorted by end time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
. -
orderByTenantId
HistoricBatchQuery orderByTenantId()Returns historic batches sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.
-