| 1158 | row_count_(0) {} |
| 1159 | |
| 1160 | Future<int64_t> Count() { |
| 1161 | auto self = shared_from_this(); |
| 1162 | return Init(self).Then([self]() { return self->DoCount(self); }); |
| 1163 | } |
| 1164 | |
| 1165 | private: |
| 1166 | Future<> Init(const std::shared_ptr<CSVRowCounter>& self) { |
no test coverage detected