Scheduler class that orders compute tasks and dispatches tasks to workers

Examples

d <- delayed(3 + 4) sched <- Scheduler$new(d, SequentialJob) sched$compute()
#> [1] 7