| 124 | } |
| 125 | |
| 126 | void CScheduler::scheduleEvery(CScheduler::Function f, int64_t deltaMilliSeconds) |
| 127 | { |
| 128 | scheduleFromNow(boost::bind(&Repeat, this, f, deltaMilliSeconds), deltaMilliSeconds); |
| 129 | } |
| 130 | |
| 131 | size_t CScheduler::getQueueInfo(boost::chrono::system_clock::time_point &first, |
| 132 | boost::chrono::system_clock::time_point &last) const |
no outgoing calls
no test coverage detected