| 1497 | // MARK: Callbacks |
| 1498 | |
| 1499 | void Node::setScheduler(Scheduler* scheduler) |
| 1500 | { |
| 1501 | if (scheduler != _scheduler) |
| 1502 | { |
| 1503 | this->unscheduleAllCallbacks(); |
| 1504 | AX_SAFE_RETAIN(scheduler); |
| 1505 | AX_SAFE_RELEASE(_scheduler); |
| 1506 | _scheduler = scheduler; |
| 1507 | } |
| 1508 | } |
| 1509 | |
| 1510 | bool Node::isScheduled(SEL_SCHEDULE selector) const |
| 1511 | { |
nothing calls this directly
no test coverage detected