Type alias ConnectionPoolEvents

ConnectionPoolEvents: {
    connectionCheckOutFailed(event) => void;
    connectionCheckOutStarted(event) => void;
    connectionCheckedIn(event) => void;
    connectionCheckedOut(event) => void;
    connectionClosed(event) => void;
    connectionCreated(event) => void;
    connectionPoolCleared(event) => void;
    connectionPoolClosed(event) => void;
    connectionPoolCreated(event) => void;
    connectionPoolReady(event) => void;
    connectionReady(event) => void;
} & Omit<ConnectionEvents, "close" | "message">

Type declaration

Generated using TypeDoc