Configuring listeners in service task

Is it possible to configure and execute more than one Execution Listener or TaskListener on any of the task types?

Yep, and the modeller lets you do this.

Will it be executed in the order which we configured during modelling a bpmn?

Not guaranteed. If you need this, build a composite listener.

do we have documented this in camunda docs page anywhere? if not how to implement it? Just give me a heads up :slight_smile:

You would follow the Composite pattern, i.e. you implement a listener that calls a list of other listeners. You may not be able to configure this list from the modeler, though.

1 Like