You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
766 B
40 lines
766 B
const path = require("path");
|
|
const Bree = require("bree");
|
|
const { SHARE_ENV } = require("worker_threads");
|
|
const { log } = require("../src/util");
|
|
let bree;
|
|
const jobs = [
|
|
{
|
|
name: "clear-old-data",
|
|
interval: "at 03:14",
|
|
},
|
|
];
|
|
|
|
const initBackgroundJobs = function (args) {
|
|
bree = new Bree({
|
|
root: path.resolve("server", "jobs"),
|
|
jobs,
|
|
worker: {
|
|
env: SHARE_ENV,
|
|
workerData: args,
|
|
},
|
|
workerMessageHandler: (message) => {
|
|
log.info("jobs", message);
|
|
}
|
|
});
|
|
|
|
bree.start();
|
|
return bree;
|
|
};
|
|
|
|
const stopBackgroundJobs = function () {
|
|
if (bree) {
|
|
bree.stop();
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
initBackgroundJobs,
|
|
stopBackgroundJobs
|
|
};
|