Skip to content

Instantly share code, notes, and snippets.

@mplatts
Created June 4, 2015 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mplatts/6dc528e441530bb797d9 to your computer and use it in GitHub Desktop.
Save mplatts/6dc528e441530bb797d9 to your computer and use it in GitHub Desktop.
meteor background job - recurring
if Meteor.isServer
class @TestJob extends Job
@setupCron: (parser) ->
parser.text('every 5 seconds')
handleJob: ->
console.log 'Job complete'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment