aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.cpp
blob: 60514b91aab0c21821f118a7c05ea7d72beece1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "document_subdb_reconfig.h"

namespace proton {

DocumentSubDBReconfig::DocumentSubDBReconfig(std::shared_ptr<Matchers> matchers_in)
    : _old_matchers(matchers_in),
      _new_matchers(matchers_in)
{
}

DocumentSubDBReconfig::~DocumentSubDBReconfig() = default;

void
DocumentSubDBReconfig::complete(uint32_t docid_limit, search::SerialNum serial_num)
{
    (void) docid_limit;
    (void) serial_num;
}

}