lamhieu:unblock

v1.0.0Published 5 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Unblock

github issues build status

Use this.unblock inside Meteor Publications. This is a project to provide this.unblock functionality to publications. this.unblock inside publications is one of most(may be a little bit less) requested feature and but it hasn't been implemented yet!

Fork from meteorhacks/unblock. I will maintain it and update it in the future. If you find an error, please open the issue in this project!

Why unblock?

Meteor executes, DDP messages for a single client in a sequence. So, if one message takes a lot of time to process, that time will add up to all the messages. Luckily, there is an API called this.unblock which can be use inside methods as shown below.

1Meteor.methods({
2  longMethod: function() {
3    this.unblock();
4    Meteor._sleepForMs(1000 * 60 * 60);
5  },
6});

So, other messages can start processing without waiting for the above method.

Unfortunately, this is not available for Publications (subscriptions) for no reason. But now you can possible it with this project.

Installation

read more in atmospherejs

$ meteor add lamhieu:unblock

Use it inside your publications, if that takes too much time or you don't need subscriptions from other publications to wait on this.

1Meteor.publish("publicationName", function() {
2  this.unblock(); // yeah!
3  Meteor._sleepForMs(1000 * 60 * 60);
4});