最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to stop and restart collection observers in Meteor? - Stack Overflow

programmeradmin0浏览0评论

I want to be able to stop and restart observers on my collections in Meteor.

Imagine I have the following observer:

 // Imagine some collection of Blog posts "Posts"
  Posts.find().observe({
    changed: notifySubscribedUsers
  });

 // function notifySubscribedUsers() { ... }  
 //    is some function that will email everyone saying some post was updated

Now imagine I want to update lots of Posts, but I dont want the observers to be called. How can I get access to the observers, stop/pause them and then later restart them (after the db job is finished) ?

TIA

I want to be able to stop and restart observers on my collections in Meteor.

Imagine I have the following observer:

 // Imagine some collection of Blog posts "Posts"
  Posts.find().observe({
    changed: notifySubscribedUsers
  });

 // function notifySubscribedUsers() { ... }  
 //    is some function that will email everyone saying some post was updated

Now imagine I want to update lots of Posts, but I dont want the observers to be called. How can I get access to the observers, stop/pause them and then later restart them (after the db job is finished) ?

TIA

Share Improve this question asked Jan 15, 2014 at 21:29 Mike GrafMike Graf 5,3174 gold badges47 silver badges60 bronze badges 2
  • Could you share a bit more info? Observers are usually a way to get the server to respond to db events but if you want to pause it then you have another use case. What you are describing I would usually do by keeping a lastUpdated field in the db and then querying on it when I need that data. – user728291 Commented Jan 19, 2014 at 1:47
  • I'm doing a bulk update and insert via the meteor app. Eg, load up a csv file and import. So we dont want the observers firing on every insert/update we just want the data to be there. – Mike Graf Commented Jan 19, 2014 at 17:20
Add a ment  | 

1 Answer 1

Reset to default 15

The observer returns a handle:

var handle = Posts.find().observe({
    changed: notifySubscribedUsers
});

Then you can stop it with:

handle.stop()

It's not possible to 'pause' it in the conventional sense, if you want to pause it you could just ignore the data it gives you.

To do this in a neat wrapped up method you could do something like:

var handle;

var start = function() {
   if(handle) handle.stop();
   var handle = Posts.find().observe({
    changed: notifySubscribedUsers
   });
}

var stop = function() { if(handle) handle.stop }

Or to put it on a collection:

// posts.js collection file
Posts.startObservers = function startObservers() {
  Posts.observer = Posts.find().observe({
    change: notifySubscribedUsers // or some other function
  });
};

Posts.stopObservers = function stopObservers() {
  if(Posts.observer) {
    Posts.observer.stop(); // Call the stop
  }
};


// Trigger Somewhere else in the code
Posts.stopObservers();
MyTool.doWorkOnPosts(); // Some contrived work on the Posts collection
Posts.startObservers();
发布评论

评论列表(0)

  1. 暂无评论