Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions timely/src/dataflow/operators/branch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ impl<S: Scope, D: Data> Branch<S, D> for Stream<S, D> {
condition: impl Fn(&S::Timestamp, &D) -> bool + 'static,
) -> (Stream<S, D>, Stream<S, D>) {
let mut builder = OperatorBuilder::new("Branch".to_owned(), self.scope());
builder.set_notify(false);

let mut input = builder.new_input(self, Pipeline);
let (mut output1, stream1) = builder.new_output();
Expand Down Expand Up @@ -95,6 +96,7 @@ pub trait BranchWhen<T>: Sized {
impl<S: Scope, C: Container + Data> BranchWhen<S::Timestamp> for StreamCore<S, C> {
fn branch_when(&self, condition: impl Fn(&S::Timestamp) -> bool + 'static) -> (Self, Self) {
let mut builder = OperatorBuilder::new("Branch".to_owned(), self.scope());
builder.set_notify(false);

let mut input = builder.new_input(self, Pipeline);
let (mut output1, stream1) = builder.new_output();
Expand Down
1 change: 1 addition & 0 deletions timely/src/dataflow/operators/core/concat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ impl<G: Scope, C: Container + Data> Concatenate<G, C> for G {
// create an operator builder.
use crate::dataflow::operators::generic::builder_rc::OperatorBuilder;
let mut builder = OperatorBuilder::new("Concatenate".to_string(), self.clone());
builder.set_notify(false);

// create new input handles for each input stream.
let mut handles = sources.into_iter().map(|s| builder.new_input(&s, Pipeline)).collect::<Vec<_>>();
Expand Down
1 change: 1 addition & 0 deletions timely/src/dataflow/operators/core/feedback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ impl<G: Scope> Feedback<G> for G {
fn feedback<C: Container + Data>(&mut self, summary: <G::Timestamp as Timestamp>::Summary) -> (Handle<G, C>, StreamCore<G, C>) {

let mut builder = OperatorBuilder::new("Feedback".to_owned(), self.clone());
builder.set_notify(false);
let (output, stream) = builder.new_output();

(Handle { builder, summary, output }, stream)
Expand Down
1 change: 1 addition & 0 deletions timely/src/dataflow/operators/core/ok_err.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ impl<S: Scope, C: Container + Data> OkErr<S, C> for StreamCore<S, C> {
L: FnMut(C::Item<'_>) -> Result<D1,D2>+'static
{
let mut builder = OperatorBuilder::new("OkErr".to_owned(), self.scope());
builder.set_notify(false);

let mut input = builder.new_input(self, Pipeline);
let (mut output1, stream1) = builder.new_output();
Expand Down
1 change: 1 addition & 0 deletions timely/src/dataflow/operators/core/partition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ impl<G: Scope, C: Container + Data> Partition<G, C> for StreamCore<G, C> {
F: FnMut(C::Item<'_>) -> (u64, D2) + 'static,
{
let mut builder = OperatorBuilder::new("Partition".to_owned(), self.scope());
builder.set_notify(false);

let mut input = builder.new_input(self, Pipeline);
let mut outputs = Vec::with_capacity(parts as usize);
Expand Down
Loading