Updated to use new Client-reference-free style.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6398 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2010-12-31 22:28:21 +00:00
parent b60112ae93
commit e80409a7f4
33 changed files with 146 additions and 144 deletions
@@ -34,31 +34,31 @@ public interface BureauService extends InvocationService
* requests via the <code>BureauReceiver</code>.
* @see BureauReceiver
*/
void bureauInitialized (Client client, String bureauId);
void bureauInitialized (String bureauId);
/**
* Notifies the server that this bureau has encountered a critical error and needs to be shut
* down.
*/
void bureauError (Client client, String message);
void bureauError (String message);
/**
* Notify the server that a previosuly requested agent is now created and ready to use.
* @see BureauReceiver#createAgent
*/
void agentCreated (Client client, int agentId);
void agentCreated (int agentId);
/**
* Notify the server that a previosuly requested agent could not be created.
* @see BureauReceiver#createAgent
*/
void agentCreationFailed (Client client, int agentId);
void agentCreationFailed (int agentId);
/**
* Notify the server that an agent is no longer running. Normally called in response
* to a call to <code>destroyAgent</code>
* @see BureauReceiver#destroyAgent
*/
void agentDestroyed (Client client, int agentId);
void agentDestroyed (int agentId);
}