Trait SqlServerCdcMetrics

Source
pub trait SqlServerCdcMetrics {
    // Required methods
    fn snapshot_table_lock_start(&self, table_name: &str);
    fn snapshot_table_lock_end(&self, table_name: &str);
}

Required Methods§

Source

fn snapshot_table_lock_start(&self, table_name: &str)

Called before the table lock is aquired

Source

fn snapshot_table_lock_end(&self, table_name: &str)

Called after the table lock is released

Implementors§