@brief Request the coroutine to stop
| 223 | |
| 224 | /// @brief Request the coroutine to stop |
| 225 | void set_should_stop(bool val) FL_NOEXCEPT { mShouldStop = val; } |
| 226 | |
| 227 | /// @brief Check if stop has been requested |
| 228 | bool should_stop() const FL_NOEXCEPT { return mShouldStop; } |
no outgoing calls
no test coverage detected