So I have events that, when triggered, will do stuff that includes also triggering multiple other events. The problem is that some of these events take time to do their thing (anywhere from 2-60 seconds, in some cases doing script work. However, it appears that when an event fires off another event, it spawns a thread rather than doing it serially.
So what ends up happing is i have a list of, say, 3 events that need to run, one after another (and are sequenced that way in the triggering event), but they all get fired off immediately and clobber on each other. I need them to run sequentially, not in parallel.
Any generalistic suggestions on if that can be made to happen? I can provide more details if desired, but basically the general thrust of it is what i've stated here, for various different types of events I need to deal with.....
Many thanks!
Paul
So what ends up happing is i have a list of, say, 3 events that need to run, one after another (and are sequenced that way in the triggering event), but they all get fired off immediately and clobber on each other. I need them to run sequentially, not in parallel.
Any generalistic suggestions on if that can be made to happen? I can provide more details if desired, but basically the general thrust of it is what i've stated here, for various different types of events I need to deal with.....

Many thanks!
Paul
Comment