| 133 | row_index_t GetLatestRow() const { return latest_ref_row_; } |
| 134 | |
| 135 | bool Empty() const { |
| 136 | // cannot be empty if ref row is >0 -- can avoid slow queue lock |
| 137 | // below |
| 138 | if (latest_ref_row_ > 0) { |
| 139 | return false; |
| 140 | } |
| 141 | return queue_.Empty(); |
| 142 | } |
| 143 | |
| 144 | size_t index() const { return index_; } |
| 145 |
no outgoing calls
no test coverage detected