Subject: | Object Methods over POE Events |
Some commands are meant to be called as object methods
$irc->nick_name();
$irc->nicks(); # From PoCoIRC::State
It would be nice to be able to call these through POE:
my @nicks = $kernel->call($irc->session_id, 'nicks');