* @brief Sets the atomic cancel flag; long-running loops poll it between rows. */
| 57 | * @brief Sets the atomic cancel flag; long-running loops poll it between rows. |
| 58 | */ |
| 59 | void Sessions::DatabaseWorker::requestCancel() |
| 60 | { |
| 61 | m_cancelRequested.store(true, std::memory_order_release); |
| 62 | } |
| 63 | |
| 64 | //-------------------------------------------------------------------------------------------------- |
| 65 | // File operations |
no outgoing calls
no test coverage detected