74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
import * as smartpromise from '@pushrocks/smartpromise';
|
|
|
|
/**
|
|
* delay something, works like setTimeout
|
|
* @param timeInMillisecond
|
|
* @param passOn
|
|
*/
|
|
export let delayFor = async <T>(timeInMillisecond: number, passOn?: T) => {
|
|
await new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, timeInMillisecond);
|
|
});
|
|
return passOn;
|
|
};
|
|
|
|
/**
|
|
* delay for a random time
|
|
*/
|
|
export let delayForRandom = async <T>(
|
|
timeMinInMillisecond: number,
|
|
timeMaxInMillisecond: number,
|
|
passOn?: T
|
|
) => {
|
|
await new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, Math.random() * (timeMaxInMillisecond - timeMinInMillisecond) + timeMinInMillisecond);
|
|
});
|
|
return passOn;
|
|
};
|
|
|
|
export class Timeout<T> {
|
|
promise: Promise<T>;
|
|
private _deferred: smartpromise.Deferred<T>;
|
|
private _timeout: any;
|
|
private _cancelled: boolean = false;
|
|
|
|
private timeoutInMillis: number;
|
|
private started: number;
|
|
|
|
constructor(timeInMillisecondArg, passOn?: T) {
|
|
this.timeoutInMillis = timeInMillisecondArg;
|
|
this._deferred = smartpromise.defer<T>();
|
|
this.promise = this._deferred.promise;
|
|
this._timeout = setTimeout(() => {
|
|
if (!this._cancelled) {
|
|
this._deferred.resolve(passOn);
|
|
}
|
|
}, timeInMillisecondArg);
|
|
this.started = Date.now();
|
|
}
|
|
|
|
/**
|
|
* unreffing a timeout causes the node process to not wait for completion before exit
|
|
*/
|
|
public makeUnrefed() {
|
|
this._timeout.unref();
|
|
}
|
|
|
|
/**
|
|
* cancels the timer
|
|
*/
|
|
public cancel() {
|
|
this._cancelled = true;
|
|
this.makeUnrefed();
|
|
}
|
|
|
|
public getTimeLeft() {
|
|
const result = this.started + this.timeoutInMillis - Date.now();
|
|
return result > 0 ? result : 0;
|
|
}
|
|
}
|