| 252 | } |
| 253 | |
| 254 | void ContentService::BeforeExit() |
| 255 | { |
| 256 | #if PLATFORM_THREADS_LIMIT > 1 |
| 257 | // Signal threads to end work soon |
| 258 | for (auto thread : LoadThreads) |
| 259 | thread->NotifyExit(); |
| 260 | LoadTasksSignal.NotifyAll(); |
| 261 | #endif |
| 262 | } |
| 263 | |
| 264 | void ContentService::Dispose() |
| 265 | { |
nothing calls this directly
no test coverage detected