Meteor-Community-Packages / meteor-collection-hooks

Meteor Collection Hooks
https://atmospherejs.com/matb33/collection-hooks
MIT License
657 stars 92 forks source link

What happens on multiple instances? #165

Closed dnish closed 8 years ago

dnish commented 8 years ago

Just for example, I'm running 3 Meteor instances and deifining a server hooks:

Postings.after.remove(function() {

});

Will this hook fire 3 times (on all 3 instances) or only on one?

dmitrijs-balcers commented 8 years ago

It will be executed on the instance where remove were performed.