Skip to content

Commit

Permalink
Update pub uses
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Hoffmann <antiguru@gmail.com>
  • Loading branch information
antiguru committed Feb 18, 2024
1 parent 92930dd commit 595dfcc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions timely/src/dataflow/operators/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
//! Extension traits for `Stream` implementing various operators that
//! are independent of specific container types.
pub mod concat;
pub mod exchange;
pub mod filter;
pub mod input;
pub mod inspect;
pub mod map;
pub mod ok_err;
pub mod probe;
pub mod rc;
pub mod reclock;
pub mod to_stream;
pub mod unordered_input;

pub use concat::{Concat, Concatenate};
pub use exchange::Exchange;
pub use filter::Filter;
pub use input::Input;
pub use map::Map;
pub use ok_err::OkErr;
pub use probe::{Probe, Handle};
pub use rc::SharedStream;
pub use reclock::Reclock;
pub use to_stream::ToStream;
pub use unordered_input::{UnorderedHandle, UnorderedInput};
16 changes: 8 additions & 8 deletions timely/src/dataflow/operators/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub use self::result::ResultStream;
pub use self::generic::Operator;
pub use self::generic::{Notificator, FrontierNotificator};

pub use self::reclock::Reclock;
pub use self::core::reclock::Reclock;
pub use self::count::Accumulate;

pub mod core;
Expand All @@ -40,26 +40,26 @@ pub mod input;
pub mod flow_controlled;
pub mod unordered_input;
pub mod feedback;
pub mod concat;
pub use self::core::concat;
pub mod partition;
pub mod map;
pub mod inspect;
pub mod filter;
pub use self::core::inspect;
pub use self::core::filter;
pub mod delay;
pub mod exchange;
pub use self::core::exchange;
pub mod broadcast;
pub mod probe;
pub use self::core::probe;
pub mod to_stream;
pub mod capture;
pub mod branch;
pub mod ok_err;
pub mod rc;
pub use self::core::rc;
pub mod result;

pub mod aggregation;
pub mod generic;

pub mod reclock;
pub use self::core::reclock;
pub mod count;

// keep "mint" module-private
Expand Down

0 comments on commit 595dfcc

Please sign in to comment.