Resets the executor, discarding any pending (not yet started) tasks.
Appends an async task to the sequential execution chain. Returns a promise that resolves/rejects with the task's own outcome. The chain itself never rejects (errors are caught) so subsequent tasks always run.
Sequential async task executor for ordered side-effect patterns.
Used by AsyncSinkTransfer and AsyncWriteTransfer when the
orderedconfig option is enabled. Tasks are queued and executed one at a time in submission order, regardless of their internal async duration.Mechanics:
Error handling: