View Single Post
09-17-19, 09:30 AM   #1
tirafesi
A Murloc Raider
Join Date: Sep 2019
Posts: 8
Are callbacks run in parallel?

I have an array that I modify in the OnUpdate handler. Somewhere else in the code, I call the method C_Timer.After, altering that same array after N milliseconds.

Here's my question: Will the callback run in parallel with OnUpdate, and thus risking both methods changing the array at the same time? Or does it run sequentially?
  Reply With Quote