cancel
Showing results for 
Search instead for 
Did you mean: 

complete a task with the interface TaskListener

simpdev
Champ in-the-making
Champ in-the-making

Hello, I am a beginner in development with "Activiti"

I want to know if it was possible to complete a task with the interface "TaskListener"

Thanks.
2 REPLIES 2

frederikherema1
Star Contributor
Star Contributor
The task-listener is used to run your code when a task is created, assigned or completed. It can be attached in the BPMN (see user guide). Completing a task can only be done using the API-call on the TaskService (completeTask(…)).

simpdev
Champ in-the-making
Champ in-the-making
thanks for your reply.