Interface InternalPdoPoolOptions<T>

interface InternalPdoPoolOptions<T> {
    kill: ((resource) => any);
    killResource?: boolean;
    killTimeoutMillis?: number;
}

Type Parameters

  • T

Hierarchy

  • PoolOptions<T>
    • InternalPdoPoolOptions

Properties

kill: ((resource) => any)

Type declaration

    • (resource): any
    • Parameters

      • resource: T

      Returns any

killResource?: boolean
killTimeoutMillis?: number