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

#include "document_db_reconfig.h"
#include "document_subdb_reconfig.h"

namespace proton {

DocumentDBReconfig::DocumentDBReconfig(std::unique_ptr<DocumentSubDBReconfig> ready_reconfig_in,
                                       std::unique_ptr<DocumentSubDBReconfig> not_ready_reconfig_in)
    : _ready_reconfig(std::move(ready_reconfig_in)),
      _not_ready_reconfig(std::move(not_ready_reconfig_in))
{
}

DocumentDBReconfig::~DocumentDBReconfig() = default;

}