Skip to content

Commit

Permalink
Add missing unstable tags
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Dec 6, 2024
1 parent cd68431 commit c9cc963
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zenoh-ext/src/advanced_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ kedefine!(
pub(crate) ke_liveliness: "@adv/${zid:*}/${eid:*}/${meta:**}/@/${remaining:**}",
);

#[zenoh_macros::unstable]
/// Configure replies QoS.
#[derive(Clone, Debug)]
pub struct QoS {
Expand Down Expand Up @@ -77,6 +78,7 @@ impl QoSBuilderTrait for QoS {

#[derive(Debug, Clone)]
/// Configure an [`AdvancedPublisher`](crate::AdvancedPublisher) cache.
#[zenoh_macros::unstable]
pub struct CacheConfig {
max_samples: usize,
replies_qos: QoS,
Expand Down Expand Up @@ -106,6 +108,7 @@ impl CacheConfig {
}

/// The builder of an [`AdvancedCache`], allowing to configure it.
#[zenoh_macros::unstable]
pub struct AdvancedCacheBuilder<'a, 'b, 'c> {
session: &'a Session,
pub_key_expr: ZResult<KeyExpr<'b>>,
Expand Down Expand Up @@ -189,6 +192,7 @@ fn sample_in_range(sample: &Sample, start: Option<u32>, end: Option<u32>) -> boo
}

/// [`AdvancedCache`].
#[zenoh_macros::unstable]
pub struct AdvancedCache {
cache: Arc<RwLock<VecDeque<Sample>>>,
max_samples: usize,
Expand Down

0 comments on commit c9cc963

Please sign in to comment.