1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Namespace protocol operations: upload sessions, publish batches, and the
//! change feed.
//!
//! These are the object-store implementations behind
//! [`NamespaceEngine`](crate::engine::NamespaceEngine) calls; the module tree
//! is crate-internal, so callers reach every operation through the re-exports
//! below. Submodules follow the life of a mutation:
//!
//! - [`uploads`] stages content before metadata can reference it: begin,
//! stage, and complete durable upload sessions, including direct-put
//! targets that move bytes past the server and the in-process staging
//! writes that are both ends of an upload at once.
//! - [`publish_view`] loads the publish-time metadata view: the current head
//! plus the WAL tail replayed over the manifest, with head-etag freshness
//! checks against concurrent publishers.
//! - [`candidates`] admits one batch candidate at a time: request conversion,
//! commit-id validation, and duplicate resolution against durable receipts
//! and same-batch primaries.
//! - [`batch`] publishes admitted candidates as one WAL segment plus one head
//! compare-and-swap, then fans outcomes back to every candidate slot.
//! - [`changes`] reads committed changes after a sequence number and converts
//! durable WAL deltas to API deltas.
pub use ;
pub use list_changes_after;
pub use ;
pub use ;
pub use CompletedUpload;
pub use ;