Renamed the InvocationListeners to the standard way I've been naming

inner classes over here on the actionscript side.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4265 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-07-13 19:08:18 +00:00
parent fc91faf25f
commit 947db5851d
14 changed files with 24 additions and 73 deletions
@@ -74,56 +74,6 @@ package com.threerings.presents.client {
*/
public interface InvocationService
{
/**
* Invocation service methods that require a response should take a
* listener argument that can be notified of request success or
* failure. The listener argument should extend this interface so that
* generic failure can be reported in all cases. For example:
*
* <pre>
* // Used to communicate responses to <code>moveTo</code> requests.
* public interface MoveListener extends InvocationListener
* {
* // Called in response to a successful <code>moveTo</code>
* // request.
* public void moveSucceeded (PlaceConfig config);
* }
* </pre>
*/
// public static interface InvocationListener
// {
/**
* Called to report request failure. If the invocation services
* system detects failure of any kind, it will report it via this
* callback. Particular services may also make use of this
* callback to report failures of their own, or they may opt to
* define more specific failure callbacks.
*/
// public void requestFailed (String cause);
// }
/**
* Extends the {@link InvocationListener} with a basic success
* callback.
*/
// public static interface ConfirmListener extends InvocationListener
// {
/**
* Indicates that the request was successfully processed.
*/
// public void requestProcessed ();
// }
/**
* Extends the {@link InvocationListener} with a basic success
* callback that delivers a result object.
*/
// public static interface ResultListener extends InvocationListener
// {
/**
* Indicates that the request was successfully processed.
*/
// public void requestProcessed (Object result);
// }
// nada
}
}