diff options
Diffstat (limited to 'java/src/Ice/ObjectImpl.java')
-rw-r--r-- | java/src/Ice/ObjectImpl.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/java/src/Ice/ObjectImpl.java b/java/src/Ice/ObjectImpl.java index fc1ea960340..1d75c12c6a5 100644 --- a/java/src/Ice/ObjectImpl.java +++ b/java/src/Ice/ObjectImpl.java @@ -301,6 +301,22 @@ public abstract class ObjectImpl implements Object, java.lang.Cloneable, java.io } } + /** + * 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 + **/ + public DispatchStatus + ice_dispatch(Request request) + { + return ice_dispatch(request, null); + } + public DispatchStatus __dispatch(IceInternal.Incoming in, Current current) { |