I’m receiving an error about too many events and it is crashing my app:
My question is about workflows that run when a condition is true. Does the presence of these contribute to the too many events error?
My app is mostly a one-page app but it is quite large and complex. There are many workflows that trigger when a condition is true.
- Do these workflows poll on a regular basis for that condition?
- Do these workflows act as listeners that trigger when notified?
In other words, if I take the extreme step to refactor my app into a multi-page app so that I have much fewer workflows waiting for a condition to be true, will this help me to avoid this error?
Thanks!