mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
42 lines
779 B
TypeScript
42 lines
779 B
TypeScript
|
import { sendMsgFromObject } from "./os";
|
||
|
|
||
|
let nextTimerId = 1;
|
||
|
|
||
|
// tslint:disable-next-line:no-any
|
||
|
type TimerCallback = (...args: any[]) => void;
|
||
|
|
||
|
interface Timer {
|
||
|
id: number;
|
||
|
cb: TimerCallback;
|
||
|
interval: boolean;
|
||
|
duration: number; // milliseconds
|
||
|
}
|
||
|
|
||
|
const timers = new Map<number, Timer>();
|
||
|
|
||
|
export function setTimeout(cb: TimerCallback, duration: number): number {
|
||
|
const timer = {
|
||
|
id: nextTimerId++,
|
||
|
interval: false,
|
||
|
duration,
|
||
|
cb
|
||
|
};
|
||
|
timers.set(timer.id, timer);
|
||
|
sendMsgFromObject({
|
||
|
timerStart: {
|
||
|
id: timer.id,
|
||
|
interval: false,
|
||
|
duration
|
||
|
}
|
||
|
});
|
||
|
return timer.id;
|
||
|
}
|
||
|
|
||
|
export function timerReady(id: number, done: boolean): void {
|
||
|
const timer = timers.get(id);
|
||
|
timer.cb();
|
||
|
if (done) {
|
||
|
timers.delete(id);
|
||
|
}
|
||
|
}
|