ixfx
    Preparing search index...

    Type Alias TaskQueueEvents

    type TaskQueueEvents = {
        empty: any;
        error: { error: unknown; task: AsyncTask };
        progress: { remaining: number; result?: any; task: AsyncTask };
        started: any;
    }
    Index

    Properties

    empty: any

    Task queue has emptied: it has nothing left to do.

    error: { error: unknown; task: AsyncTask }

    An error occurred when running a task

    progress: { remaining: number; result?: any; task: AsyncTask }

    Event fired when a task completes

    started: any

    Task queue was empty and now processing. This does not fire for each task, only when the queue transitions from empty to non-empty.