aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h b/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
index 5710e893503..df82ddf1584 100644
--- a/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
+++ b/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
@@ -8,8 +8,6 @@
namespace proton {
-class ILidCommitState;
-
/**
* The view of a document sub db as seen from the maintenance controller
* and various maintenance jobs.
@@ -22,7 +20,6 @@ private:
IDocumentMetaStore::SP _meta_store;
IDocumentRetriever::SP _retriever;
IFeedView::SP _feed_view;
- const ILidCommitState *_pendingLidsForCommit;
public:
MaintenanceDocumentSubDB();
@@ -32,8 +29,7 @@ public:
uint32_t sub_db_id,
IDocumentMetaStore::SP meta_store,
IDocumentRetriever::SP retriever,
- IFeedView::SP feed_view,
- const ILidCommitState *);
+ IFeedView::SP feed_view);
const vespalib::string& name() const { return _name; }
uint32_t sub_db_id() const { return _sub_db_id; }
@@ -42,8 +38,6 @@ public:
const IFeedView::SP& feed_view() const { return _feed_view; }
bool valid() const { return _meta_store.get() != nullptr; }
- bool lidNeedsCommit(search::DocumentIdT lid) const;
-
void clear();
};