Skip to main content

diskann_disk/build/chunking/checkpoint/
mod.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6mod checkpoint_record_manager;
7pub use checkpoint_record_manager::{
8    CheckpointManager, CheckpointManagerClone, CheckpointManagerExt,
9};
10
11mod checkpoint_record;
12pub use checkpoint_record::CheckpointRecord;
13
14mod checkpoint_record_manager_with_file;
15pub use checkpoint_record_manager_with_file::CheckpointRecordManagerWithFileStorage;
16
17mod naive_checkpoint_record_manager;
18pub use naive_checkpoint_record_manager::NaiveCheckpointRecordManager;
19
20mod progress;
21pub use progress::Progress;
22
23mod work_type;
24pub use work_type::WorkStage;
25
26mod checkpoint_context;
27pub use checkpoint_context::{CheckpointContext, OwnedCheckpointContext};