aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcorespi/index/indexmanagerconfig.cpp
blob: 8ba9efe2734785c1d6cb52d90852f86ded3304d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "indexmanagerconfig.h"

namespace searchcorespi {

IndexManagerConfig::IndexManagerConfig(const vespalib::string &configId,
                                       const config::ConfigSnapshot &configSnapshot,
                                       size_t numSearcherThreads)
    : _configId(configId),
      _configSnapshot(configSnapshot),
      _numSearcherThreads(numSearcherThreads)
{
}

IndexManagerConfig::~IndexManagerConfig() { }

} // namespace searchcorespi