| 43 | } |
| 44 | |
| 45 | bool BlockingRowBatchQueue::AddBatchWithTimeout( |
| 46 | unique_ptr<RowBatch>&& batch, int64_t timeout_micros) { |
| 47 | return batch_queue_->BlockingPutWithTimeout( |
| 48 | forward<unique_ptr<RowBatch>>(batch), timeout_micros); |
| 49 | } |
| 50 | |
| 51 | unique_ptr<RowBatch> BlockingRowBatchQueue::GetBatch() { |
| 52 | unique_ptr<RowBatch> result; |
no test coverage detected