GitXplorerGitXplorer
f

chronos

public
38 stars
5 forks
1 issues

Commits

List of commits on branch master.
Unverified
0707f314df40ff23a98ed21de72b54b8ce721ccd

Woops, bad URL, plus I haven't posted the blog post yet

ffitzgen committed 14 years ago
Unverified
38357e20299c7f97c63c50884abcc6a93fb5bfa1

First commit

ffitzgen committed 14 years ago

README

The README file for this repository.

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);
};