MCPcopy Create free account
hub / github.com/DemonMartin/tlsClient / PoolStats

Interface PoolStats

src/utils/client.ts:28–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26 * Statistics about the worker pool
27 */
28export interface PoolStats {
29 /** The number of active threads in the pool */
30 utilization: number;
31 /** The number of completed tasks */
32 completed: number;
33 /** The number of tasks waiting to be processed */
34 waiting: number;
35 /** The number of threads in the pool */
36 threads: number;
37}
38
39/**
40 * @classdesc Manages the TLS library and worker pool.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected