Is there a ActivitiEventListener-like listener

hi,activiti6 has ActivitiEventListener,this can Monitor the whole process.camunda has there such a listener?


Is it this?

The feature is kind different than what we have in Camunda, but you can try TaskListener or ExecutionListener.

https://docs.camunda.org/manual/latest/user-guide/process-engine/delegation-code/#execution-listener
https://docs.camunda.org/manual/latest/user-guide/process-engine/delegation-code/#task-listener

You can also check this post for more information on how to “globally” add listeners to your process: Create Execution Listener in Spring[Modified]

Regards.