CartoDB-SQL-API/lib/batch/scheduler/capacity/fixed.js

12 lines
233 B
JavaScript
Raw Normal View History

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