You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This data structure is a queue that will run every function one by one sequentially.
* It will run indifferently synchrones and asynchrones functions. Making sure the previous function is over before starting the next one. It will essentially wait for the previous function to be finished before running the next one.
* It has no return value, it will just run the function added sometimes in the future.
*
* The queue can be auto executed on add or the execution can be delayed.