Skip to content

Instantly share code, notes, and snippets.

@jakobdamjensen
Created October 2, 2014 09:31
Show Gist options
  • Save jakobdamjensen/33b57104e951e493954a to your computer and use it in GitHub Desktop.
Save jakobdamjensen/33b57104e951e493954a to your computer and use it in GitHub Desktop.
Async throw
Meteor.methods({
insertIt: function (name) {
var fut = new Future();
Books.insert({title: name}, function(err, result){
if(err){
fut.throw(err);
}
});
return fut.wait();
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment