Created
June 4, 2015 06:47
-
-
Save mplatts/7fdb33a708d8cbd52c42 to your computer and use it in GitHub Desktop.
background job using meteor workers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if Meteor.isClient | |
Template.hello.events | |
'click button': -> | |
Meteor.call('loadJob') | |
if Meteor.isServer | |
class @TestJob extends Job | |
handleJob: -> | |
console.log 'Job complete' | |
Meteor.methods | |
loadJob: -> | |
Job.push new TestJob |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment