执行轮询(定时)任务。与纯粹的 setTimeout 或 setInterval 实现的定时任务相比,本模块还支持在异步操作(比如对后端接口的请求)完成之后,再进行下一轮计时。
npm i @just4/polling
import { Polling } from '@just4/polling';
const polling = new Polling(() => {
return new Promise((resolve) => {
setTimeout(() => {
console.log('executed');
resolve();
}, 1000);
});
}, {
// 2 秒执行一次
interval: 2000
});
// 开始轮询(调用 start 后会马上执行一次操作函数)
polling.start();
// 停止轮询
polling.stop();
可以通过传入 shouldContinue
钩子函数控制是否继续轮询:
let i = 0;
const polling = new Polling(() => {
return new Promise<void>((resolve) => {
i += 1;
});
}, {
// 返回值为 false 时停止轮询
shouldContinue() { return i < 3; }
});
polling.start();
可以通过传入 breakOnError: true
在执行出错的时候停止轮询:
const polling = new Polling(() => {
return new Promise((resolve, reject) => {
// 模拟出错的情况
setTimeout(() => {
if (Math.random < 0.5) {
resolve();
} else {
reject();
}
}, 1000);
});
}, {
interval: 2000,
breakOnError: true
});
polling.start();
可以调用实例方法 updateOptions
更新轮询选项:
const polling = new Polling(() => {
console.log('executed');
}, {
interval: 2000,
breakOnError: true
});
polling.start();
setTimeout(() => {
polling.updateOptions({
interval: 1000
});
}, 3000);
const polling = new Polling(() => {
return new Promise((resolve) => {
setTimeout(() => {
console.log('executed');
resolve();
}, 1000);
});
}, {
interval: 2000,
breakOnError: true
});
polling.start();
setTimeout(() => {
// 注意,如果操作函数是异步的而且当前还未执行完,
// 那么 execImmediately 会等待它执行完之后才再次执行操作函数
polling.execImmediately();
}, 3000);
import { PollingEvent } from '@/events';
let i = 0;
const polling = new Polling(() => {
return new Promise<void>((resolve) => {
i += 1;
});
}, {
shouldContinue() { return i < 3; }
});
polling.on('start', () => {
console.log('start');
});
polling.on('stop', () => {
console.log('stop');
});
polling.start();
@just4/util/event
中的 PubSub
实现。PollingEvent
不再是枚举类型,事件名通过字符串指定即可。shouldContinue
选项,用于传入一个决定是否停止轮询的函数。