| 379 | } |
| 380 | } |
| 381 | |
| 382 | void RuntimeManager::forceBindAttributes(const StringBox& className) { |
| 383 | // Will lazily trigger the binding attributes if needed. |
| 384 | auto viewManagerContexts = _viewManagerContexts; |
| 385 | |
| 386 | _workerQueue->async([viewManagerContexts, className]() { |
| 387 | for (const auto& viewManagerContext : viewManagerContexts) { |
| 388 | viewManagerContext->getAttributesManager().getAttributesForClass(className); |
| 389 | } |
| 390 | }); |
| 391 | } |
| 392 | |
| 393 | std::vector<SharedRuntime> RuntimeManager::getAllRuntimes() { |
nothing calls this directly
no test coverage detected