Trait webscale_plugin::Plugin [] [src]

pub trait Plugin: Send {
    fn on_connect(&self, _: &Link);
    fn on_disconnect(&self, _: &Link);
    fn on_message(&self, _: &Link, _: &str, _: &str);
    fn on_action(&self, _: &Link, _: &str, _: &str);
    fn on_join(&self, _: &Link, _: &str);
    fn on_leave(&self, _: &Link, _: &str);
}

Required Methods

Implementors