Stores labeled schedules which are bound to a given executor.
class SomeExecutor extends Executor {}scheduler.set("primary",new SomeExecutor())scheduler.set("secondary",new SomeExecutor())const primarySchedule = scheduler.get("primary") Copy
class SomeExecutor extends Executor {}scheduler.set("primary",new SomeExecutor())scheduler.set("secondary",new SomeExecutor())const primarySchedule = scheduler.get("primary")
Stores labeled schedules which are bound to a given executor.
Example