Preparing search index...

    Concrete implementation of ITaskManager that tracks and coordinates task completion within the editor.

        const taskManager = this.pluginSystem.findInterface(
    Task.ITaskManager
    ) as Task.TaskManager;
    taskManager.whenAllCompleted().then(() => {
    console.log('TaskManager: all tasks finished');
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    interfaceId: InterfaceId

    Unique identifier for the ITaskManager interface, used for component lookup.

    Methods

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Returns a promise that resolves when all pending tasks have completed.

      Returns Promise<void>