| 30 | } |
| 31 | |
| 32 | void TRandomAccessFileOutput::DoFlush() { |
| 33 | File->FlushData(); |
| 34 | } |
| 35 | |
| 36 | TBufferedFileOutputEx::TBufferedFileOutputEx(const TString& path, EOpenMode oMode, size_t buflen) |
| 37 | : TRandomAccessFileOutput(*(new TDirectIOBufferedFile(path, oMode, buflen))) |