Files
module4_backend_project/node_modules/generic-pool/lib/PooledResourceStateEnum.js
T
2025-02-11 15:06:41 +01:00

12 lines
337 B
JavaScript

"use strict";
const PooledResourceStateEnum = {
ALLOCATED: "ALLOCATED", // In use
IDLE: "IDLE", // In the queue, not in use.
INVALID: "INVALID", // Failed validation
RETURNING: "RETURNING", // Resource is in process of returning
VALIDATION: "VALIDATION" // Currently being tested
};
module.exports = PooledResourceStateEnum;