| 291 | } |
| 292 | |
| 293 | void LoaderService::stopAll(const std::string& id) { |
| 294 | LOGGER.info("dispatching stopAll({})", id); |
| 295 | dispatcherThread->dispatch([this, id] { |
| 296 | onStopAllAppMessage(id); |
| 297 | }); |
| 298 | } |
| 299 | |
| 300 | std::shared_ptr<app::AppContext> LoaderService::getCurrentAppContext() { |
| 301 | const auto lock = mutex.asScopedLock(); |