org.camunda.bpm.engine.history
Interface HistoricActivityStatisticsQuery

All Superinterfaces:
Query<HistoricActivityStatisticsQuery,HistoricActivityStatistics>
All Known Implementing Classes:
HistoricActivityStatisticsQueryImpl

public interface HistoricActivityStatisticsQuery
extends Query<HistoricActivityStatisticsQuery,HistoricActivityStatistics>

Author:
Roman Smirnov

Method Summary
 HistoricActivityStatisticsQuery includeCanceled()
          Include an aggregation of canceled instances in the result.
 HistoricActivityStatisticsQuery includeCompleteScope()
          Include an aggregation of instances, which complete a scope (ie.
 HistoricActivityStatisticsQuery includeFinished()
          Include an aggregation of finished instances in the result.
 HistoricActivityStatisticsQuery orderByActivityId()
          Order by activity id (needs to be followed by Query.asc() or Query.desc()).
 
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult
 

Method Detail

includeFinished

HistoricActivityStatisticsQuery includeFinished()
Include an aggregation of finished instances in the result.


includeCanceled

HistoricActivityStatisticsQuery includeCanceled()
Include an aggregation of canceled instances in the result.


includeCompleteScope

HistoricActivityStatisticsQuery includeCompleteScope()
Include an aggregation of instances, which complete a scope (ie. in bpmn manner: an activity which consumed a token and did not produced a new one), in the result.


orderByActivityId

HistoricActivityStatisticsQuery orderByActivityId()
Order by activity id (needs to be followed by Query.asc() or Query.desc()).



Copyright © 2016 camunda services GmbH. All rights reserved.