Is it possible to have callbacks on events? Now it seems to only receive a closure when i do something like:

$this->eventManager->attach('afterHandleRequest', array($this, 'setTranslator'));

It will throw an exception because it is not an object, but it is callable. Why does the eventmanager requires an object instead of a callable argument?