new Schedulers.RoundRobin()
schedulers/roundrobin.js, line 10
Starts at worker 0, sends a task, moves to worker 1, sends a task. Keep going to worker (n), then start over at worker 0 again.
NOTE: Doesn't keep track of if workers are in use or not, will keep pushing work to a worker even if it is busy.