Guest User

Untitled

a guest
Sep 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function eventLoop() {
  2. // perform loop ticks, "forever"
  3. while (true) {
  4. var tastQueue = selectTaskQueue();
  5. var nextTask = taskQueue.getNextTask();
  6. nextTask();
  7. }
  8. }
Add Comment
Please, Sign In to add comment