pub trait LogListener {
// Required method
fn NotifyLog(&mut self, msg: &InnerLogMsg, msgSeq: u64) -> bool;
}Expand description
Log listener, for application want to implement specific log storage & report function
pub trait LogListener {
// Required method
fn NotifyLog(&mut self, msg: &InnerLogMsg, msgSeq: u64) -> bool;
}Log listener, for application want to implement specific log storage & report function