Generify.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4948 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-03-03 22:06:49 +00:00
parent 938be601e2
commit 8c5e04aac5
@@ -118,11 +118,11 @@ public interface InvocationService
* Extends the {@link InvocationListener} with a basic success
* callback that delivers a result object.
*/
public static interface ResultListener extends InvocationListener
public static interface ResultListener<T> extends InvocationListener
{
/**
* Indicates that the request was successfully processed.
*/
public void requestProcessed (Object result);
public void requestProcessed (T result);
}
}