rename mediator to EventChannel as it was named wrongly

This commit is contained in:
2018-11-30 23:10:58 +01:00
parent 128004f35f
commit 3cb4d61ad5
5 changed files with 17 additions and 11 deletions

View File

@@ -40,7 +40,7 @@ void Sprocket::dispatch( uint32_t from, String &msg ) {
}
void Sprocket::addPlugin(Plugin* p){
p->mediate(this);
p->mount(this);
plugins.reserve(1);
plugins.push_back(p);
}