Skip to content

Commit

Permalink
Stop reexporting Iter and PredicateId from future module
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed May 29, 2022
1 parent 593764d commit 92c2789
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/future.rs
Expand Up @@ -7,7 +7,6 @@ mod builder;
mod cache;
mod value_initializer;

pub use crate::sync_base::{iter::Iter, PredicateId};
pub use {
builder::CacheBuilder,
cache::{BlockingOp, Cache},
Expand Down
3 changes: 2 additions & 1 deletion src/future/cache.rs
@@ -1,13 +1,14 @@
use super::{
value_initializer::{InitResult, ValueInitializer},
CacheBuilder, ConcurrentCacheExt, Iter, PredicateId,
CacheBuilder, ConcurrentCacheExt,
};
use crate::{
common::concurrent::{
constants::{MAX_SYNC_REPEATS, WRITE_RETRY_INTERVAL_MICROS},
housekeeper::InnerSync,
Weigher, WriteOp,
},
sync::{Iter, PredicateId},
sync_base::base_cache::{BaseCache, HouseKeeperArc},
Policy, PredicateError,
};
Expand Down
3 changes: 2 additions & 1 deletion src/sync/cache.rs
@@ -1,13 +1,14 @@
use super::{
value_initializer::{InitResult, ValueInitializer},
CacheBuilder, ConcurrentCacheExt, Iter, PredicateId,
CacheBuilder, ConcurrentCacheExt,
};
use crate::{
common::concurrent::{
constants::{MAX_SYNC_REPEATS, WRITE_RETRY_INTERVAL_MICROS},
housekeeper::InnerSync,
Weigher, WriteOp,
},
sync::{Iter, PredicateId},
sync_base::{
base_cache::{BaseCache, HouseKeeperArc},
iter::ScanningGet,
Expand Down

0 comments on commit 92c2789

Please sign in to comment.