| 1165 | } |
| 1166 | |
| 1167 | void FlushCache(i64 offset, i64 length, bool wait) { |
| 1168 | if (!Handle_.FlushCache(offset, length, wait)) { |
| 1169 | ythrow TFileError() << "can't flush data " << FileName_.Quote(); |
| 1170 | } |
| 1171 | } |
| 1172 | |
| 1173 | private: |
| 1174 | TFileHandle Handle_; |
nothing calls this directly
no test coverage detected