Constructs an instance of UFSerialQueueAction.
Rest
...anActions: IUFQueueableAction[]One or more actions to run.
Gets the current running action or null if there is none.
Gets the progress, include the progress of any running action.
Gets the progress weight.
True if the queue still has at least one running action.
Number of running actions.
Gets all current running actions.
Runs all stored actions at the same time.
If the queue is already running, the method just returns true.
Token that can be cancelled to stop running.
true if all actions run successful; false if one of the actions returned false or the token was cancelled.
an error if one or more actions threw an error.
UFSerialQueueAction can be used to run one or more IUFQueueableAction sequentially.
The class is a subclass of UFParallelQueueAction using a concurrent count of 1 (so only one action is ran at the time).