I have a question related to setting variables for user tasks. When we used Camunda 7 we had a creation listener for each user task.to set specific variables only for that particular user task. Because the listener concept is not available anymore I search a way to set the user task variables now for Camunda 8 tasks.
As I see I could create a JobWorker for type “io.camunda.zeebe:userTask” and set the variables on Task creation. But as I understand it this is a common functionality which is called for all the user tasks in the engine.
Is there also another way to execute some task specific logic on creation?