Interface TaskStatisticsInternal

Task statistics.

interface TaskStatistics {
    executed: number;
    executing: number;
    failed: number;
    maxQueued?: number;
    queued: number;
    sequentiallyStolen: number;
    stolen: number;
}

Properties

executed: number

Number of executed tasks.

executing: number

Number of executing tasks.

failed: number

Number of failed tasks.

maxQueued?: number

Maximum number of queued tasks.

queued: number

Number of queued tasks.

sequentiallyStolen: number

Number of sequentially stolen tasks.

stolen: number

Number of stolen tasks.