I have a subscription that, after calling ready() performs a series of updates pulling data from other collections:
Meteor.publish('foo', function() { this.ready()
How can I run these updates asynchronously? Each update accesses the database, performs some calculations, and calls changed in the subscription.
I also need to run the code after all updates are complete (resynchronization).
javascript asynchronous meteor
slezica
source share