MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / unschedule

Method unschedule

Source/Basic/Scheduler.cpp:117–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115}
116
117void Scheduler::unschedule(ScheduledItem* item) {
118 if (item && item->iter) {
119 _updateList.erase(item->iter.value());
120 item->target->release();
121 item->iter = std::nullopt;
122 }
123}
124
125void Scheduler::unscheduleFixed(FixedScheduledItem* item) {
126 if (item && item->iter) {

Callers

nothing calls this directly

Calls 7

getMethod · 0.65
setMethod · 0.65
eraseMethod · 0.45
valueMethod · 0.45
releaseMethod · 0.45
isRunningMethod · 0.45
getCountMethod · 0.45

Tested by

no test coverage detected