-
Hi all, just a quick question: https://github.com/camunda-community-hub/zeebe-simple-tasklist/tree/main#usage states that I haven't tried yet, but if the above is correct, then that should allow the following worker to process User Tasks: const worker = zbc.createWorker({
taskType: 'io.camunda.zeebe:userTask',
taskHandler: job => {
// worker logic...
return job.complete({
result: true
})
}
}) Did anyone try such a EDIT: additional reference re: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To answer my own question: YES, following the The "Decoupled Job Completion" pattern does indeed work for user tasks. All that's necessary is a worker registered for the |
Beta Was this translation helpful? Give feedback.
To answer my own question: YES, following the The "Decoupled Job Completion" pattern does indeed work for user tasks.
All that's necessary is a worker registered for the
taskType: 'io.camunda.zeebe:userTask'
.