Skip to main content

reifydb_store_multi/flush/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4pub mod engine;
5
6use reifydb_core::interface::catalog::storage::StorageId;
7
8pub trait ObjectPersistence: Send + Sync + 'static {
9	fn is_persistent(&self, storage: StorageId) -> bool;
10}