Skip to content

Instantly share code, notes, and snippets.

@tdantas
Created October 28, 2012 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tdantas/3969702 to your computer and use it in GitHub Desktop.
Save tdantas/3969702 to your computer and use it in GitHub Desktop.
programming async trick.
//Question:
// Environment: NodeJS
// Lets suppose that you have a collection of items, and your function must persist all items using the
//database.insert(item, callback ) function. When you finish the task, you should call the callback function.
// If one item raise a error, the callback(err) must be called and never call the callback anymore.
function saveBulk(items, callback) {
// Your code here
}
saveBulk([ {name:"thiago"}, {name: "r42"}, { name: "rulio"} , { name: "nodejs"} ], function(err) {
console.log("Ok");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment