Trait mz_compute::render::WithStartSignal
source · pub(crate) trait WithStartSignal {
// Required method
fn with_start_signal(self, signal: StartSignal) -> Self;
}
Expand description
Extension trait to attach a StartSignal
to operator outputs.
Required Methods§
sourcefn with_start_signal(self, signal: StartSignal) -> Self
fn with_start_signal(self, signal: StartSignal) -> Self
Delays data and progress updates until the start signal has fired.
Note that this operator needs to buffer all incoming data, so it has some memory footprint, depending on the amount and shape of its inputs.
Object Safety§
This trait is not object safe.