use std::{fmt, rc::Rc};
use crate::{
foundation::patterns::facade::BaseFacade,
prelude::{Command, Facade, Interest, Notification, Notifier, Singleton},
};
pub struct SimpleCommand {}
impl SimpleCommand {}
impl<Body> Command<Body> for SimpleCommand
where
Body: fmt::Debug + 'static,
{
fn execute(&self, _notification: Rc<dyn Notification<Body>>) {}
}
impl<Body> Notifier<Body> for SimpleCommand
where
Body: fmt::Debug + 'static,
{
fn send(&self, interest: Interest, body: Option<Body>) {
log::error!("You should implement yourself SimpleCommand");
BaseFacade::<Body>::global().send(interest, body);
}
}
impl fmt::Debug for SimpleCommand {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SimpleCommand").finish()
}
}