1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/timers.ts

42 lines
779 B
TypeScript
Raw Normal View History

2018-05-18 11:49:28 -04:00
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);
}
}