We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ready
These are the Pool class definitions:
export class Pool<T> extends EventEmitter { spareResourceCapacity: number; size: number; available: number; borrowed: number; pending: number; max: number; min: number; start(): void; acquire(priority?: number): Promise<T>; release(resource: T): Promise<void>; destroy(resource: T): Promise<void>; drain(): Promise<void>; clear(): Promise<void>; use<U>(cb: (resource: T) => U | Promise<U>): Promise<U>; isBorrowedResource(resource: T): boolean; }
I wanted to add it, but I am not sure what is the process.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
These are the Pool class definitions:
I wanted to add it, but I am not sure what is the process.
The text was updated successfully, but these errors were encountered: