diff options
Diffstat (limited to 'include/framework/structure/MutableBuffer.h')
| -rw-r--r-- | include/framework/structure/MutableBuffer.h | 1 |
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(); } |