use std::fmt::Debug;
use crate::StateMachine;
pub trait ProtocolWatcher<SM: StateMachine> {
fn caught_non_critical_error(&mut self, when: When, err: SM::Err);
}
#[derive(Debug)]
pub enum When {
HandleIncoming,
Proceed,
}
pub struct BlindWatcher;
impl<SM> ProtocolWatcher<SM> for BlindWatcher
where
SM: StateMachine,
{
fn caught_non_critical_error(&mut self, _when: When, _err: SM::Err) {}
}
pub struct StderrWatcher;
impl<SM> ProtocolWatcher<SM> for StderrWatcher
where
SM: StateMachine,
SM::Err: Debug,
{
fn caught_non_critical_error(&mut self, when: When, err: SM::Err) {
eprintln!("Caught non critical error at {:?}: {:?}", when, err);
}
}