What is difference between end event and a terminate the event?

What is difference between end event and a terminate the event?

  Discussion posts and replies are publicly visible

Parents Reply
  • Interesting PoV. I take the "horses for courses" view - know when to use a terminate event, know when to use an end event and use as applicable. I don't see the need for making the end event terminates by default because (for me) that causes special behaviour that is only needed in certain circumstances. Which you use has no bearing on when a process instance gets flushed from memory. The criteria for that is the Data Management policy you've instituted only comes into force when all active threads have completed. So: I use End by default, and ONLY use Terminate when I need to kill the process and kill all currently active threads.

    Discuss.

Children