Flush the file.
(self)
| 236 | self._writer.WriteRecord(record, status) |
| 237 | |
| 238 | def flush(self): |
| 239 | """Flush the file.""" |
| 240 | with errors.raise_exception_on_not_ok_status() as status: |
| 241 | self._writer.Flush(status) |
| 242 | |
| 243 | def close(self): |
| 244 | """Close the file.""" |