More style changes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5248 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 13:02:13 +00:00
parent 09f8a25876
commit c743432676
38 changed files with 155 additions and 193 deletions
@@ -32,23 +32,23 @@ public interface SessionObserver
/**
* Called immediately before a logon is attempted.
*/
public void clientWillLogon (Client client);
void clientWillLogon (Client client);
/**
* Called after the client successfully connected to and authenticated with the server. The
* entire object system is up and running by the time this method is called.
*/
public void clientDidLogon (Client client);
void clientDidLogon (Client client);
/**
* For systems that allow switching screen names after logon, this method is called whenever a
* screen name change takes place to report that the client object has been replaced to
* potential client-side subscribers.
*/
public void clientObjectDidChange (Client client);
void clientObjectDidChange (Client client);
/**
* Called after the client has been logged off of the server and has disconnected.
*/
public void clientDidLogoff (Client client);
void clientDidLogoff (Client client);
}