Reputation: 155
Is it possible to get the latest running process in Activiti with createProcessInstanceQuery ?
runtimeService.createProcessInstanceQuery().processDefinitionKey('myKey').active().singleResult().getProcessInstanceId() I want to get the process instance ID of that definition but only the latest running process. Thank you
Upvotes: 0
Views: 644
Reputation: 155
To get a specific running process instance ID , you can use the HistoryService with : for example to get the last started process instance with specific definition key:
historyService.createHistoricProcessInstanceQuery().unfinished().processDefinitionKey("YOURKEY").orderByProcessInstanceStartTime().desc().listPage(0,1)[0].id
Upvotes: 2