onFlushComplete method
Notify storage that a flush cycle completed (for WAL checkpoint).
Implementation
Future<void> onFlushComplete() async {
if (_dbAvailable) {
await _sqliteStorage.onFlushComplete();
_syncStorageState();
}
}
Notify storage that a flush cycle completed (for WAL checkpoint).
Future<void> onFlushComplete() async {
if (_dbAvailable) {
await _sqliteStorage.onFlushComplete();
_syncStorageState();
}
}