aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcorespi/index/indexmanagerconfig.cpp
blob: f5df775a27b6495c65aecafc0f984c1735eebf1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. 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