| 1599 | } |
| 1600 | |
| 1601 | void Node::unschedule(SEL_SCHEDULE selector) |
| 1602 | { |
| 1603 | // explicit null handling |
| 1604 | if (selector == nullptr) |
| 1605 | return; |
| 1606 | |
| 1607 | _scheduler->unschedule(selector, this); |
| 1608 | } |
| 1609 | |
| 1610 | void Node::unschedule(std::string_view key) |
| 1611 | { |
no outgoing calls