| 1164 | row_count_(0) {} |
| 1165 | |
| 1166 | Future<int64_t> Count() { |
| 1167 | auto self = shared_from_this(); |
| 1168 | return Init(self).Then([self]() { return self->DoCount(self); }); |
| 1169 | } |
| 1170 | |
| 1171 | private: |
| 1172 | Future<> Init(const std::shared_ptr<CSVRowCounter>& self) { |
no test coverage detected