@univerjscorefunctionsSequenceasync

@univerjs/core v0.5.0-beta.1Docs


Function: sequenceAsync()

function sequenceAsync(tasks): Promise<ISequenceExecuteResult>

Execute promise tasks in sequence, if one of the tasks return false, the sequence will be stopped.

Parameters

ParameterTypeDescription
tasks() => boolean | Promise<boolean>[]All promise tasks that need to be triggered.

Returns

Promise<ISequenceExecuteResult>

Returns true if all tasks are executed successfully, otherwise false and index of the task that returns false.

Defined in

packages/api/tmp/univer-pro/submodules/univer/packages/core/src/common/sequence.ts:28