Search code examples
activiti

Activiti list completed process


I'm starting to use activi inside my webapp write in java. How can I extract the list of completed jobs? I tried to use runtimeService.createProcessInstanceQuery().list(); but it does not show me the finished process.

Thank you Sergio


Solution

  • Sir , I knew that TaskService.complete(taskId);

    If you want to find out your finished task , why not use HistoryService , all variables and data included .

    Such as HistoryService.create***Query , wish it could help you !