pub trait CatalogTrackFlowChangeOperations {
// Required methods
fn track_flow_created(&mut self, flow: Flow) -> Result<()>;
fn track_flow_updated(&mut self, pre: Flow, post: Flow) -> Result<()>;
fn track_flow_deleted(&mut self, flow: Flow) -> Result<()>;
}Expand description
Trait for tracking flow definition changes during a transaction.