summaryrefslogtreecommitdiffstats
path: root/include/framework/structure/MutableBuffer.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-02-11 17:32:10 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2025-02-11 17:32:10 -0500
commit85afe4ef04f327862460570fb0aa4c30afcf7cc7 (patch)
treeaba55db313b752df4ac073db117900e0128c22fb /include/framework/structure/MutableBuffer.h
parentc04efb2640421be7a24f851c08e290c89b7b46f2 (diff)
downloaddynamic-extension-85afe4ef04f327862460570fb0aa4c30afcf7cc7.tar.gz
Progress: began adding parallel merging and locking of levels
Diffstat (limited to 'include/framework/structure/MutableBuffer.h')
-rw-r--r--include/framework/structure/MutableBuffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/framework/structure/MutableBuffer.h b/include/framework/structure/MutableBuffer.h
index 0eae73d..0197ecd 100644
--- a/include/framework/structure/MutableBuffer.h
+++ b/include/framework/structure/MutableBuffer.h
@@ -104,6 +104,7 @@ public:
bool is_full() const { return get_record_count() >= m_hwm; }
bool is_at_low_watermark() const { return get_record_count() >= m_lwm; }
+ bool is_at_high_watermark() const { return get_record_count() >= m_hwm; }
size_t get_tombstone_count() const { return m_tscnt.load(); }