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