You know, generifying that correctly is actually a big scary tunnel of dealing with

our generated services & whatnot, so that's a much deeper rabbit hole than I was 
thinking when I just did that one big, so I'm going to leave that well enough alone
for now instead of half-assing it.


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