pub trait BatchOperator: Operator {
// Required method
fn bind(
&self,
ctx: &mut dyn BatchBindCtx,
) -> VortexResult<BatchExecutionRef>;
}
Expand description
The default execution mode for an operator is batch mode.
pub trait BatchOperator: Operator {
// Required method
fn bind(
&self,
ctx: &mut dyn BatchBindCtx,
) -> VortexResult<BatchExecutionRef>;
}
The default execution mode for an operator is batch mode.