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
//! Shared KV store abstraction for Beyond services.
//!
//! This crate provides a backend-agnostic interface for key-value storage,
//! with NATS JetStream as the primary implementation.
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────┐
//! │ KvReader │ KvWatcher │ KvWriter │
//! │ (core KV operations) │
//! ├─────────────────────────────────────────────────────────────┤
//! │ KvStore │
//! │ (named bucket with reader/watcher/writer) │
//! ├─────────────────────────────────────────────────────────────┤
//! │ Connection │
//! │ (lifecycle, store factory, capabilities) │
//! ├─────────────────────────────────────────────────────────────┤
//! │ NatsConnection │
//! │ (concrete implementation) │
//! └─────────────────────────────────────────────────────────────┘
//! ```
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;