Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 461 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 461 Bytes

Chronos

Why? Read JavaScript Timer Congestion.

Chronos implements the WindowTimers interface defined by HTML 5.

interface WindowTimers {
  long setTimeout(in any handler, in optional any timeout, in any... args);
  void clearTimeout(in long handle);
  long setInterval(in any handler, in optional any timeout, in any... args);
  void clearInterval(in long handle);
};