logo
pub trait Command<Body>: Debug where
    Body: Debug + 'static, 
{ fn execute(&self, notification: Rc<dyn Notification<Body>>); }
Expand description

The definition for a PureMVC Command.

Required Methods

Execute the Command’s logic to handle a given Notification.

Implementors