| 43 | { |
| 44 | |
| 45 | PageManager::PageManager(int cacheSize, int threads, int indexFactor, i3s::FetchFunction fetch) : |
| 46 | m_pool(threads, -1), m_cacheSize(cacheSize), m_indexFactor(indexFactor), m_fetch(fetch) |
| 47 | {} |
| 48 | |
| 49 | void PageManager::fetchPage(int index) |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected