Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/poolifier/src/mod.ts>TaskStatistics

Fast and small web worker pool
Latest
interface TaskStatistics
import { type TaskStatistics } from "https://deno.land/x/poolifier@v0.3.14/src/mod.ts";

Task statistics.

Properties

executed: number

Number of executed tasks.

executing: number

Number of executing tasks.

readonly
queued: number

Number of queued tasks.

readonly
optional
maxQueued: number

Maximum number of queued tasks.

sequentiallyStolen: number

Number of sequentially stolen tasks.

stolen: number

Number of stolen tasks.

failed: number

Number of failed tasks.