| 543 | row_index_t GetLatestRow() const { return latest_ref_row_; } |
| 544 | |
| 545 | bool Empty() const { |
| 546 | // cannot be empty if ref row is >0 -- can avoid slow queue lock |
| 547 | // below |
| 548 | if (latest_ref_row_ > 0) return false; |
| 549 | return queue_.Empty(); |
| 550 | } |
| 551 | |
| 552 | // true when the queue is empty and, when memo may have future entries (the case of a |
| 553 | // positive tolerance), when the memo is empty. |
no outgoing calls