Constructor.
String name of the function that created this ScheduledDelegate.
Delegate to trigger at the point in time timestamp.
When dg is scheduled to be called, in hnsecs from midnight Jan 1st 1970.
import std.datetime.systime : Clock; void dg() { /* ... */ } auto scheduledDg = ScheduledDelegate(&dg, Clock.currTime.stdTime + 10 * 10_000_000);
A delegate paired with a long UNIX timestamp.
If we bundle the two together like this, we can associate a point in time with a delegate without having to to use an associative array (with UNIX timestamp keys).