Am I right in thinking that multiple hooks that are added for the same event can be prioritised by doing something like this...
$session->addHookAfter( 'login', $this, 'myLoginHook', array('priority'=>xyz) );
Where xyz is the relative priority for the hook and the lower the value, the earlier it will be called as the hooks are executed?