I'm trying to simulate a publication doing a bunch of work and taking a long time to return a cursor.
My publish method has a forced sleep (using a future), but the app always displays only
Here's the publication:
Meteor.publish('people', function() {
Future = Npm.require('fibers/future');
var future = new Future();
//simulate long pause
setTimeout(function() {
// UPDATE: coding error here. This line needs to be
// future.return(People.find());
// See the accepted answer for an alternative, too:
// Meteor._sleepForMs(2000);
return People.find();
}, 2000);
//wait for future.return
return future.wait();
});
And the router:
Router.configure({
layoutTemplate: 'layout',
loadingTemplate: 'loading'
});
Router.map(function() {
return this.route('home', {
path: '/',
waitOn: function() {
return [Meteor.subscribe('people')];
},
data: function() {
return {
'people': People.find()
};
}
});
});
Router.onBeforeAction('loading');
Full source code: https://gitlab.com/meonkeys/meteor-simulate-slow-publication
The easiest way to do this is to use the undocumented Meteor._sleepForMs
function like so:
Meteor.publish('people', function() {
Meteor._sleepForMs(2000);
return People.find();
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With