File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ class CScheduler
45
45
// Call func at/after time t
46
46
void schedule (Function f, boost::chrono::system_clock::time_point t=boost::chrono::system_clock::now());
47
47
48
- // Convenience method: call f once deltaSeconds from now
48
+ // Convenience method: call f once deltaMilliSeconds from now
49
49
void scheduleFromNow (Function f, int64_t deltaMilliSeconds);
50
50
51
51
// Another convenience method: call f approximately
52
- // every deltaSeconds forever, starting deltaSeconds from now.
52
+ // every deltaMilliSeconds forever, starting deltaMilliSeconds from now.
53
53
// To be more precise: every time f is finished, it
54
- // is rescheduled to run deltaSeconds later. If you
54
+ // is rescheduled to run deltaMilliSeconds later. If you
55
55
// need more accurate scheduling, don't use this method.
56
56
void scheduleEvery (Function f, int64_t deltaMilliSeconds);
57
57
You can’t perform that action at this time.
0 commit comments