| 85 | } |
| 86 | |
| 87 | Task* Task::ContinueWith(Task* task) |
| 88 | { |
| 89 | ASSERT(task != nullptr && task != this); |
| 90 | if (_continueWith) |
| 91 | return _continueWith->ContinueWith(task); |
| 92 | _continueWith = task; |
| 93 | return task; |
| 94 | } |
| 95 | |
| 96 | Task* Task::ContinueWith(const Action& action, Object* target) |
| 97 | { |
no test coverage detected