diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-19 10:43:09 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-19 10:43:09 -0230 |
commit | c28420f50886170f9b12d7d211f79739538e2f2f (patch) | |
tree | 99cee30ecf52e6529fbaeb4217df3257f48367c1 /java/src/Ice/Object.java | |
parent | Added Ruby implemetation of EndpointInfo and ConnectionInfo (diff) | |
download | ice-c28420f50886170f9b12d7d211f79739538e2f2f.tar.bz2 ice-c28420f50886170f9b12d7d211f79739538e2f2f.tar.xz ice-c28420f50886170f9b12d7d211f79739538e2f2f.zip |
Bug 4030 - overload ice_dispatch
Diffstat (limited to 'java/src/Ice/Object.java')
-rw-r--r-- | java/src/Ice/Object.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/src/Ice/Object.java b/java/src/Ice/Object.java index 9d7aa80da42..54b6a69c5be 100644 --- a/java/src/Ice/Object.java +++ b/java/src/Ice/Object.java @@ -142,6 +142,18 @@ public interface Object **/ DispatchStatus ice_dispatch(Request request, DispatchInterceptorAsyncCallback cb); + /** + * Dispatches an invocation to a servant. This method is used by dispatch interceptors to forward an invocation + * to a servant (or to another interceptor). + * + * @param request The details of the invocation. + * @return The dispatch status for the operation. + * + * @see DispatchInterceptor + * @see DispatchStatus + **/ + DispatchStatus ice_dispatch(Request request); + DispatchStatus __dispatch(IceInternal.Incoming in, Current current); DispatchStatus __collocDispatch(IceInternal.Direct request); |