aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-05-11 05:13:15 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-05-11 11:30:33 +0000
commit5bb97577080289df480c69701511366641b02ec7 (patch)
treed777b63f2f4d3a242acda5b35cc737b8c3f70d3a /searchcore/src/vespa/searchcore/proton/server/maintenancedocumentsubdb.h
parent4f0fc6d74b24fbc7af2606afc1306cac95bc3704 (diff)
No longer any need for commit and wait retrieverbalder/no-longer-need-commit-and-wait
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();
};