aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h b/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h
index 89129a6b0d0..0554056100e 100644
--- a/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h
+++ b/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.h
@@ -1,6 +1,7 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
+#include <vespa/searchlib/common/serialnum.h>
#include <memory>
namespace proton {
@@ -26,7 +27,8 @@ public:
return _old_matchers != _new_matchers;
}
std::shared_ptr<Matchers> matchers() const { return _new_matchers; }
+
+ void complete(uint32_t docid_limit, search::SerialNum serial_num);
};
}
-