コード例 #1
0
 public void QueueOneTime(string name, Action action, TimeSpan interval)
 {
     QueueInternal(ScheduledAction.Create(name, action, interval, false));
 }
コード例 #2
0
 public void QueueForever(string name, Action action, TimeSpan interval)
 {
     QueueInternal(ScheduledAction.Create(name, action, interval, true));
 }