Coroutine control
| 314 | |
| 315 | // Coroutine control |
| 316 | void Handle::stop() { if (mImpl) mImpl->stop(); } |
| 317 | bool Handle::isRunning() const { return mImpl ? mImpl->isRunning() : false; } |
| 318 | |
| 319 | // Free function builders (were static methods on class fl::task) |
no outgoing calls
no test coverage detected