| 271 | } |
| 272 | |
| 273 | app::LaunchId LoaderService::start(const std::string& id, std::shared_ptr<const Bundle> parameters) { |
| 274 | const auto launch_id = nextLaunchId++; |
| 275 | dispatcherThread->dispatch([this, id, launch_id, parameters]() { |
| 276 | onStartAppMessage(id, launch_id, parameters); |
| 277 | }); |
| 278 | return launch_id; |
| 279 | } |
| 280 | |
| 281 | void LoaderService::stopTop() { |
| 282 | const auto& id = getCurrentAppContext()->getManifest().appId; |
no test coverage detected