Skip to content

Instantly share code, notes, and snippets.

@trylovetom
Last active January 19, 2019 04:12
Show Gist options
  • Save trylovetom/3cf20864f901fc1eadb3f7d4c2d385d0 to your computer and use it in GitHub Desktop.
Save trylovetom/3cf20864f901fc1eadb3f7d4c2d385d0 to your computer and use it in GitHub Desktop.
The Job Schedule Base On setInterval.
import {
job as homeJob,
time as homeTime,
enable as homeEnable,
runFirstTime as homeRunFirstTime
} from './home'
/**
* 建立 Schedule
* @version 1.1.0
* @param {Function} job 要執行的函數
* @param {Number} time ms 間隔
*/
export function createSchedule (job, time) {
return setInterval(job, time)
}
/**
* 刪除 Schedule
* @version 1.1.0
* @param {Object} schedule 要刪除的 schedule
*/
export function clearSchedule (schedule) {
clearInterval(schedule)
}
/**
* 開始執行
* @returns {Array} 所有的 Schedule Instance
*/
export function start () {
const list = []
if (homeEnable === 'true' && process.env.NODE_APP_INSTANCE === '0') { // 只要 PM2 Cluster Master 執行
if (homeRunFirstTime === 'true') {
setImmediate(homeJob)
}
list.push(createSchedule(homeJob, homeTime))
}
return list
}
/**
* 停止執行
* @param {Array} schedules 所有的 Schedule Instance
*/
export function stop (schedules) {
for (let schedule of schedules) {
clearSchedule(schedule)
}
}
@trylovetom
Copy link
Author

...
api_1          | info: Home Schedule: 2019-01-18T04:13:45.468Z
api_1          | info: Home Schedule: 2019-01-18T04:14:15.469Z
api_1          | info: Home Schedule: 2019-01-18T04:14:45.470Z
api_1          | info: Home Schedule: 2019-01-18T04:15:15.471Z
api_1          | info: Home Schedule: 2019-01-18T04:15:45.471Z
api_1          | info: Home Schedule: 2019-01-18T04:16:15.472Z
api_1          | info: Home Schedule: 2019-01-18T04:16:45.472Z
api_1          | info: Home Schedule: 2019-01-18T04:17:15.472Z
api_1          | info: Home Schedule: 2019-01-18T04:17:45.472Z
api_1          | info: Home Schedule: 2019-01-18T04:18:15.472Z
api_1          | info: Home Schedule: 2019-01-18T04:18:45.472Z
api_1          | info: Home Schedule: 2019-01-18T04:19:15.472Z
api_1          | info: Home Schedule: 2019-01-18T04:19:45.472Z
api_1          | info: Home Schedule: 2019-01-18T04:20:15.472Z
api_1          | info: Home Schedule: 2019-01-18T04:20:45.473Z
api_1          | info: Home Schedule: 2019-01-18T04:21:15.473Z
api_1          | info: Home Schedule: 2019-01-18T04:21:45.474Z
api_1          | info: Home Schedule: 2019-01-18T04:22:15.476Z
api_1          | info: Home Schedule: 2019-01-18T04:22:45.477Z
api_1          | info: Home Schedule: 2019-01-18T04:23:15.478Z
api_1          | info: Home Schedule: 2019-01-18T04:23:45.479Z
api_1          | info: Home Schedule: 2019-01-18T04:24:15.480Z
api_1          | info: Home Schedule: 2019-01-18T04:24:45.480Z
api_1          | info: Home Schedule: 2019-01-18T04:25:15.482Z
api_1          | info: Home Schedule: 2019-01-18T04:25:45.483Z
api_1          | info: Home Schedule: 2019-01-18T04:26:15.483Z
api_1          | info: Home Schedule: 2019-01-18T04:26:45.484Z
api_1          | info: Home Schedule: 2019-01-18T04:27:15.485Z
api_1          | info: Home Schedule: 2019-01-18T04:27:45.486Z
api_1          | info: Home Schedule: 2019-01-18T04:28:15.487Z
api_1          | info: Home Schedule: 2019-01-18T04:28:45.489Z
api_1          | info: Home Schedule: 2019-01-18T04:29:15.491Z
api_1          | info: Home Schedule: 2019-01-18T04:29:45.491Z
api_1          | info: Home Schedule: 2019-01-18T04:30:15.491Z
api_1          | info: Home Schedule: 2019-01-18T04:30:45.492Z
api_1          | info: Home Schedule: 2019-01-18T04:31:15.494Z
api_1          | info: Home Schedule: 2019-01-18T04:31:45.495Z
api_1          | info: Home Schedule: 2019-01-18T04:32:15.496Z
api_1          | info: Home Schedule: 2019-01-18T04:32:45.496Z
api_1          | info: Home Schedule: 2019-01-18T04:33:15.496Z
api_1          | info: Home Schedule: 2019-01-18T04:33:45.497Z
api_1          | info: Home Schedule: 2019-01-18T04:34:15.497Z
api_1          | info: Home Schedule: 2019-01-18T04:34:45.497Z
api_1          | info: Home Schedule: 2019-01-18T04:35:15.498Z
api_1          | info: Home Schedule: 2019-01-18T04:35:45.498Z
api_1          | info: Home Schedule: 2019-01-18T04:36:15.499Z
api_1          | info: Home Schedule: 2019-01-18T04:36:45.500Z
api_1          | info: Home Schedule: 2019-01-18T04:37:15.500Z
api_1          | info: Home Schedule: 2019-01-18T04:37:45.500Z
api_1          | info: Home Schedule: 2019-01-18T04:38:15.500Z
api_1          | info: Home Schedule: 2019-01-18T04:38:45.500Z
api_1          | info: Home Schedule: 2019-01-18T04:39:15.500Z
api_1          | info: Home Schedule: 2019-01-18T04:39:45.502Z
api_1          | info: Home Schedule: 2019-01-18T04:40:15.502Z
api_1          | info: Home Schedule: 2019-01-18T04:40:45.503Z
api_1          | info: Home Schedule: 2019-01-18T04:41:15.505Z
api_1          | info: Home Schedule: 2019-01-18T04:41:45.505Z
api_1          | info: Home Schedule: 2019-01-18T04:42:15.507Z
api_1          | info: Home Schedule: 2019-01-18T04:42:45.508Z
api_1          | info: Home Schedule: 2019-01-18T04:43:15.509Z
api_1          | info: Home Schedule: 2019-01-18T04:43:45.509Z
api_1          | info: Home Schedule: 2019-01-18T04:44:15.510Z
api_1          | info: Home Schedule: 2019-01-18T04:44:45.511Z
api_1          | info: Home Schedule: 2019-01-18T04:45:15.511Z
api_1          | info: Home Schedule: 2019-01-18T04:45:45.511Z
api_1          | info: Home Schedule: 2019-01-18T04:46:15.512Z
api_1          | info: Home Schedule: 2019-01-18T04:46:45.513Z
api_1          | info: Home Schedule: 2019-01-18T04:47:15.513Z
api_1          | info: Home Schedule: 2019-01-18T04:47:45.515Z
api_1          | info: Home Schedule: 2019-01-18T04:48:15.515Z
api_1          | info: Home Schedule: 2019-01-18T04:48:45.516Z
api_1          | info: Home Schedule: 2019-01-18T04:49:15.516Z
api_1          | info: Home Schedule: 2019-01-18T04:49:45.517Z
api_1          | info: Home Schedule: 2019-01-18T04:50:15.517Z
api_1          | info: Home Schedule: 2019-01-18T04:50:45.518Z
api_1          | info: Home Schedule: 2019-01-18T04:51:15.519Z
api_1          | info: Home Schedule: 2019-01-18T04:51:45.519Z
api_1          | info: Home Schedule: 2019-01-18T04:52:15.520Z
api_1          | info: Home Schedule: 2019-01-18T04:52:45.521Z
api_1          | info: Home Schedule: 2019-01-18T04:53:15.521Z
api_1          | info: Home Schedule: 2019-01-18T04:53:45.521Z
api_1          | info: Home Schedule: 2019-01-18T04:54:15.521Z
api_1          | info: Home Schedule: 2019-01-18T04:54:45.521Z
api_1          | info: Home Schedule: 2019-01-18T04:55:15.521Z
api_1          | info: Home Schedule: 2019-01-18T04:55:45.521Z
api_1          | info: Home Schedule: 2019-01-18T04:56:15.522Z
api_1          | info: Home Schedule: 2019-01-18T04:56:45.523Z
api_1          | info: Home Schedule: 2019-01-18T04:57:15.524Z
api_1          | info: Home Schedule: 2019-01-18T04:57:45.525Z
api_1          | info: Home Schedule: 2019-01-18T04:58:15.526Z
api_1          | info: Home Schedule: 2019-01-18T04:58:45.527Z
api_1          | info: Home Schedule: 2019-01-18T04:59:15.528Z
api_1          | info: Home Schedule: 2019-01-18T04:59:45.530Z
api_1          | info: Home Schedule: 2019-01-18T05:00:15.531Z
api_1          | info: Home Schedule: 2019-01-18T05:00:45.533Z
api_1          | info: Home Schedule: 2019-01-18T05:01:15.534Z
api_1          | info: Home Schedule: 2019-01-18T05:01:45.535Z
api_1          | info: Home Schedule: 2019-01-18T05:02:15.536Z
api_1          | info: Home Schedule: 2019-01-18T05:02:45.537Z
api_1          | info: Home Schedule: 2019-01-18T05:03:15.538Z
api_1          | info: Home Schedule: 2019-01-18T05:03:45.539Z
api_1          | info: Home Schedule: 2019-01-18T05:04:15.540Z
api_1          | info: Home Schedule: 2019-01-18T05:04:45.540Z
api_1          | info: Home Schedule: 2019-01-18T05:05:15.542Z
api_1          | info: Home Schedule: 2019-01-18T05:05:45.542Z
api_1          | info: Home Schedule: 2019-01-18T05:06:15.542Z
api_1          | info: Home Schedule: 2019-01-18T05:06:45.544Z
api_1          | info: Home Schedule: 2019-01-18T05:07:15.544Z
api_1          | info: Home Schedule: 2019-01-18T05:07:45.546Z
api_1          | info: Home Schedule: 2019-01-18T05:08:15.546Z
api_1          | info: Home Schedule: 2019-01-18T05:08:45.547Z
api_1          | info: Home Schedule: 2019-01-18T05:09:15.547Z
api_1          | info: Home Schedule: 2019-01-18T05:09:45.548Z
api_1          | info: Home Schedule: 2019-01-18T05:10:15.549Z
api_1          | info: Home Schedule: 2019-01-18T05:10:45.549Z
api_1          | info: Home Schedule: 2019-01-18T05:11:15.549Z
api_1          | info: Home Schedule: 2019-01-18T05:11:45.551Z
api_1          | info: Home Schedule: 2019-01-18T05:12:15.551Z
api_1          | info: Home Schedule: 2019-01-18T05:12:45.552Z
api_1          | info: Home Schedule: 2019-01-18T05:13:15.553Z
api_1          | info: Home Schedule: 2019-01-18T05:13:45.554Z
api_1          | info: Home Schedule: 2019-01-18T05:14:15.554Z
api_1          | info: Home Schedule: 2019-01-18T05:14:45.555Z
api_1          | info: Home Schedule: 2019-01-18T05:15:15.557Z
api_1          | info: Home Schedule: 2019-01-18T05:15:45.558Z
api_1          | info: Home Schedule: 2019-01-18T05:16:15.559Z
api_1          | info: Home Schedule: 2019-01-18T05:16:45.560Z
api_1          | info: Home Schedule: 2019-01-18T05:17:15.561Z
api_1          | info: Home Schedule: 2019-01-18T05:17:45.562Z
api_1          | info: Home Schedule: 2019-01-18T05:18:15.563Z
api_1          | info: Home Schedule: 2019-01-18T05:18:45.564Z
api_1          | info: Home Schedule: 2019-01-18T05:19:15.565Z
api_1          | info: Home Schedule: 2019-01-18T05:19:45.566Z
api_1          | info: Home Schedule: 2019-01-18T05:20:15.567Z
api_1          | info: Home Schedule: 2019-01-18T05:20:45.568Z
api_1          | info: Home Schedule: 2019-01-18T05:21:15.569Z
api_1          | info: Home Schedule: 2019-01-18T05:21:45.570Z
api_1          | info: Home Schedule: 2019-01-18T05:22:15.571Z
api_1          | info: Home Schedule: 2019-01-18T05:22:45.572Z
api_1          | info: Home Schedule: 2019-01-18T05:23:15.573Z
api_1          | info: Home Schedule: 2019-01-18T05:23:45.573Z
api_1          | info: Home Schedule: 2019-01-18T05:24:15.574Z
api_1          | info: Home Schedule: 2019-01-18T05:24:45.575Z
api_1          | info: Home Schedule: 2019-01-18T05:25:15.576Z
api_1          | info: Home Schedule: 2019-01-18T05:25:45.577Z
api_1          | info: Home Schedule: 2019-01-18T05:26:15.578Z

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment