crontab.js
v1.0.1
Published
The manager of setInterval and setTimeout.
Maintainers
Readme
Crontab.js
the manager of setInterval and setTimeout.
The core of the idea
Maintaining a queue, iterate over all those queue and execute it if needed when every time start.
Install
npm install crontabjs
Implementation
Class
Crontab(interval, error)
intervalthe interval time of crontab run. unit is ms, default is 400ms.errorthe maximum error of current time and last execute time. ifcurrTime + error - lastExecuteTime - intervalTimegreater than 0, then this item will be run.
getInstance()
Also, you can use var crontab = Crontab.getInstance(); to get the only one instance.
This is for global invoke. return the last instance of Crontab. If no instance, create a new one.
Method
on(time, fn[, context])
register a function. same as setInterval.
timemeans the interval of function run. the unit ismsfnmeans the function which wait for run.contextmeans the context of fn.
one(time, fn[, context])
like on, register once. same as setTimeout.
off([id])
clear a item which id is id in queue. if id not set, clear all queue.
start
start run crontab. this will be auto run when use new Crontab().
stop
stop run crontab.
setInterval
set the interval time of crontab run.
this will run stop and start method in turn when it invoked.
Test
# test in browser
npm run-script browser
# test in terminal
mocha
# or
npm run-script test
LICENSE
Apache License 2.0
