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

Method unscheduleUpdate

Source/Node/Node.cpp:857–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

855}
856
857void Node::unscheduleUpdate() {
858 if (_flags.isOn(Node::Updating)) {
859 _flags.setOff(Node::Updating);
860 if (_updateItem && !_updateItem->hasFunc() && _updateItem->scheduledItem->iter) {
861 _scheduler->unschedule(_updateItem->scheduledItem.get());
862 }
863 }
864}
865
866void Node::unscheduleFixedUpdate() {
867 if (_flags.isOn(Node::FixedUpdating)) {

Callers

nothing calls this directly

Calls 5

isOnMethod · 0.80
setOffMethod · 0.80
hasFuncMethod · 0.80
getMethod · 0.65
unscheduleMethod · 0.45

Tested by

no test coverage detected