diff options
Diffstat (limited to 'java/src/Ice/_ObjectDel.java')
-rw-r--r-- | java/src/Ice/_ObjectDel.java | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/java/src/Ice/_ObjectDel.java b/java/src/Ice/_ObjectDel.java index e18d35d2ab6..8da4dcf959f 100644 --- a/java/src/Ice/_ObjectDel.java +++ b/java/src/Ice/_ObjectDel.java @@ -9,25 +9,27 @@ package Ice; +import Ice.Instrumentation.InvocationObserver; + public interface _ObjectDel { - boolean ice_isA(String id, java.util.Map<String, String> context) + boolean ice_isA(String id, java.util.Map<String, String> context, InvocationObserver obsv) throws IceInternal.LocalExceptionWrapper; - void ice_ping(java.util.Map<String, String> context) + void ice_ping(java.util.Map<String, String> context, InvocationObserver obsv) throws IceInternal.LocalExceptionWrapper; - String[] ice_ids(java.util.Map<String, String> context) + String[] ice_ids(java.util.Map<String, String> context, InvocationObserver obsv) throws IceInternal.LocalExceptionWrapper; - String ice_id(java.util.Map<String, String> context) + String ice_id(java.util.Map<String, String> context, InvocationObserver obsv) throws IceInternal.LocalExceptionWrapper; boolean ice_invoke(String operation, Ice.OperationMode mode, byte[] inParams, ByteSeqHolder outParams, - java.util.Map<String, String> context) + java.util.Map<String, String> context, InvocationObserver obsv) throws IceInternal.LocalExceptionWrapper; - void ice_flushBatchRequests(); + void ice_flushBatchRequests(InvocationObserver obsv); IceInternal.RequestHandler __getRequestHandler(); void __setRequestHandler(IceInternal.RequestHandler handler); |