TaskLoop
TaskLoop* taskLoop = ContainerWindow()->DelayedTaskLoop();
TaskLoop* taskLoop = ContainerWindow()->DelayedTaskLoop();
TaskLoop::TaskLoop(bigtime_t heartBeat)
TaskLoop::~TaskLoop()
TaskLoop::RunLater(DelayedTask* task)
TaskLoop::RunLater(FunctionObject* functor, bigtime_t delay)
TaskLoop::RunLater(FunctionObjectWithResult<bool>* functor,
TaskLoop::RunLater(FunctionObjectWithResult<bool>* functor, bigtime_t delay,
TaskLoop::RunWhenIdle(FunctionObjectWithResult<bool>* functor,
TaskLoop::AccumulatedRunLater(AccumulatingFunctionObject* functor,
TaskLoop::Pulse()
TaskLoop::LatestRunTime() const
TaskLoop::RemoveTask(DelayedTask* task)
TaskLoop::AddTask(DelayedTask* task)
TaskLoop(heartBeat),
TaskLoop(heartBeat),
class TaskLoop {
TaskLoop(bigtime_t heartBeat = 10000);
virtual ~TaskLoop();
class StandAloneTaskLoop : public TaskLoop {
typedef TaskLoop _inherited;
class PiggybackTaskLoop : public TaskLoop {
TaskLoop* MainTaskLoop() const;
TaskLoop* fTaskLoop;
inline TaskLoop*
class TaskLoop;