Skip to content

Instantly share code, notes, and snippets.

@realyze
Last active August 29, 2015 14:11
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 realyze/251183daaab4acc09487 to your computer and use it in GitHub Desktop.
Save realyze/251183daaab4acc09487 to your computer and use it in GitHub Desktop.
searchRepoLoop = ->
eventEmitter = require('events').EventEmitter
loop = ->
searchRepo()
.then ->
setTimeout(loop, 1000 * 60 * 60) # infinite loop with one hour delay
.catch (e) ->
eventEmitter.emit 'error', e
return eventEmitter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment