You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Meteor provides now a [Meteor.wrapAsync](http://docs.meteor.com/#/full/meteor_wrapasync) function with almost the same functionality. This package exists for compatibility reasons.
30
+
* Meteor provides now a [Meteor.wrapAsync](http://docs.meteor.com/#/full/meteor_wrapasync) function with similar
31
+
functionality, but if the last provided argument to the resulting blocking function is a function, it will
32
+
process it in a special way as a callback. This might lead to [issues if you are making blocking functions
33
+
which might normally take non-callback functions as arguments](https://github.com/meteor/meteor/issues/2408).
34
+
This package is thus more suitable for functions which take functions as arguments.
35
+
*[meteorhacks:async](https://github.com/meteorhacks/meteor-async) provides additionally a whole suite of helper
36
+
functions which makes it easier to make blocking object methods. This package can also do that, but you have
37
+
to manually do it for each method (or create your own loop).
0 commit comments