flush method
Flush all data to external storage.
Implementation
@override
void flush() {
_memoryPool.flush();
_recordPool.flush();
_header.write(_file);
_file.flushSync();
}
Flush all data to external storage.
@override
void flush() {
_memoryPool.flush();
_recordPool.flush();
_header.write(_file);
_file.flushSync();
}