Change paradigm to use WorkFlow
3 answers
Before diving into WF, be sure to analyze the workflows you want to implement. If they are fairly simple and / or short-lived, I would think twice.
My experience is that it pays off when workflows can live for long periods of time (hours / days / weeks), especially when combined with a persistence service. In the project I used it on, we realized that out of the two main workflows we have, one of them will probably work just as well without using WF.
Another (which is mailing information that is sent via SMPT and then waits for one of several predefined responses in the mailbox and resends the message at regular intervals if no response arrives). I think this is a good case for WF.
+1
a source to share