function someFunction(number, callback) {
// U.queue(name, maximum, fn);
U.queue('someFunction', 10, function(next) {
// This context will be executed max. 10x at a time.
console.log('PROCESSED:', number);
setTimeout(function() {
// IMPORTANT: it processes next item
next();
callback();
}, 1000);
});
}