I am running into something I don\'t understand with Meteor. I have this method, which takes a query, sends it to amazon, and then in the callback of that function I try to
one better solution
using Fiber package
var Fiber = Npm.require('fibers'); ... Meteor.methods({ callAsync: function (args) { var fiber = Fiber.current; async(function (args) { ... fiber.run(res); }); return Fiber.yield(); } });