PooledResourceStateEnum.js 337 B

1234567891011
  1. "use strict";
  2. const PooledResourceStateEnum = {
  3. ALLOCATED: "ALLOCATED", // In use
  4. IDLE: "IDLE", // In the queue, not in use.
  5. INVALID: "INVALID", // Failed validation
  6. RETURNING: "RETURNING", // Resource is in process of returning
  7. VALIDATION: "VALIDATION" // Currently being tested
  8. };
  9. module.exports = PooledResourceStateEnum;