I'm trying to hook myself up to the ClientConnection::onConnect callback, like this.
package thePackage {
function ClientConnection::onConnect(%this) {
echo("A client connected");
parent::onConnect(%this);
}
};
activatePackage(thePackage);
However, nothing happens. Am I hooking up to the wrong class/prototype, or is there anything else bad?