Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
456 B
Plaintext
16 lines
456 B
Plaintext
import Client from './client'
|
|
|
|
export default ClientStats
|
|
|
|
declare class ClientStats {
|
|
constructor (pool: Client)
|
|
/** If socket has open connection. */
|
|
connected: boolean
|
|
/** Number of open socket connections in this client that do not have an active request. */
|
|
pending: number
|
|
/** Number of currently active requests of this client. */
|
|
running: number
|
|
/** Number of active, pending, or queued requests of this client. */
|
|
size: number
|
|
}
|