| 81 | } |
| 82 | |
| 83 | ViewPoolsStats ViewManagerContext::getViewPoolsStats() const { |
| 84 | ViewPoolsStats stats; |
| 85 | |
| 86 | auto viewFactories = _globalViewFactories->copyViewFactories(); |
| 87 | for (const auto& viewFactory : viewFactories) { |
| 88 | stats[viewFactory->getViewClassName()] = viewFactory->getPoolSize(); |
| 89 | } |
| 90 | |
| 91 | return stats; |
| 92 | } |
| 93 | |
| 94 | } // namespace Valdi |