Added the CLIENT_DID_CLEAR client event.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4284 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-07-21 23:41:12 +00:00
parent e16d838b18
commit a9109fc4af
3 changed files with 21 additions and 0 deletions
@@ -76,5 +76,14 @@ public interface ClientObserver extends SessionObserver
* calls event.preventDefault() then it will abort the logoff request.
*/
function clientWillLogoff (event :ClientEvent) :void;
/**
* Called after the client is completely logged off from a successful
* session and is ready to reconnect to a new server if desired. This will
* only be called after an active session was terminated, not after a logon
* attempt failed as that failure will be reported by {@link
* #clientFailedToLogon}.
*/
function clientDidClear (event :ClientEvent) :void;
}
}