Skip to content

Commit

Permalink
Update Capture
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Mar 23, 2024
1 parent 6c55677 commit fea3459
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions timely/src/dataflow/operators/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Extension traits for `StreamCore` implementing various operators that
//! are independent of specific container types.

pub mod capture;
pub mod concat;
pub mod enterleave;
pub mod exchange;
Expand All @@ -16,6 +17,7 @@ pub mod reclock;
pub mod to_stream;
pub mod unordered_input;

pub use capture::Capture;
pub use concat::{Concat, Concatenate};
pub use enterleave::{Enter, Leave};
pub use exchange::Exchange;
Expand Down
3 changes: 1 addition & 2 deletions timely/src/dataflow/operators/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ pub use self::filter::Filter;
pub use self::delay::Delay;
pub use self::exchange::Exchange;
pub use self::broadcast::Broadcast;
pub use self::capture::Capture;
pub use self::branch::{Branch, BranchWhen};
pub use self::result::ResultStream;
pub use self::to_stream::ToStream;
Expand Down Expand Up @@ -46,7 +45,7 @@ pub use self::core::exchange;
pub mod broadcast;
pub use self::core::probe::{self, Probe};
pub mod to_stream;
pub mod capture;
pub use self::core::capture::{self, Capture};
pub mod branch;
pub use self::core::ok_err::{self, OkErr};
pub use self::core::rc;
Expand Down

0 comments on commit fea3459

Please sign in to comment.