I have several different listeners that run on the same issues and event (e.g., All Issues, Issue Updated event). Do they run in serial or can they be parallelized in different threads? If each listener is independent, is there any harm in keeping the listeners separate to make debugging easier?
Hello @Derek Fields (RightStar)
There is no harm.
Listeners work asynchronously, they cannot be parallelized.
Whenever event happens, listeners got in queue and runs one after another.
Thanks for the quick reply. That is what I thought but I wanted to see if someone could confirm for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You re welcome :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.