Skip to main content

CatalogTrackFlowChangeOperations

Trait CatalogTrackFlowChangeOperations 

Source
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.

Required Methods§

Source

fn track_flow_created(&mut self, flow: Flow) -> Result<()>

Source

fn track_flow_updated(&mut self, pre: Flow, post: Flow) -> Result<()>

Source

fn track_flow_deleted(&mut self, flow: Flow) -> Result<()>

Implementors§