CartoDB-SQL-API-1.47.2/batch/scheduler/capacity/fixed.js
2023-05-07 23:04:18 +08:00

12 lines
233 B
JavaScript

'use strict';
function FixedCapacity(capacity) {
this.capacity = Math.max(1, capacity);
}
module.exports = FixedCapacity;
FixedCapacity.prototype.getCapacity = function(callback) {
return callback(null, this.capacity);
};