class documentation
A Scheduler allows for scheduling work (of the type WhatT, which must be at least a 0-argument None-returning callable) at a given time (WhenT, which much be sortable as a PriorityComparable).
| Method | call |
Call what at the time when according to the TimeDriver associated with this Scheduler. |
| Method | now |
Relay now to our TimeDriver. |
| Instance Variable | driver |
The TimeDriver that this Scheduler will use. |
| Class Variable | _max |
Undocumented |
| Class Variable | _new |
Undocumented |
| Class Variable | _q |
Undocumented |
Call what at the time when according to the TimeDriver associated with this Scheduler.
| Returns | |
ScheduledCall[ | a ScheduledCall that describes the pending call and allows for cancelling it. |