Alternative for Conditional, Link, Escalation Event in Camunda 8

Hello,
We were migrating from Camunda 7 to Camunda 8. However, we found that some BPMN elements like Conditional event, Link Intermediate Throw and Catch Event, Escalation events are not supported by Camunda 8. Can you suggest some alternatives for these elements.

Thanks in advance,
Regards.

Note that support for some of these symbols is actively being worked on:

As workarounds, you can:

  • link events: throw message event and catch message event-subprocess/boundary event, can replace these
  • escalation: publish message from a task or throw message event, and catch message non-interrupting
  • signal events, no replacement available
  • conditional event, you could create a process instance directly and use an exclusive gateway to filter for the condition.

Hope it helps

1 Like

Thanks @korthout much appreciated.