summaryrefslogtreecommitdiff
path: root/java/src/Ice/_ObjectDelM.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r--java/src/Ice/_ObjectDelM.java27
1 files changed, 15 insertions, 12 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java
index 398eed35a11..9c1cfdfe468 100644
--- a/java/src/Ice/_ObjectDelM.java
+++ b/java/src/Ice/_ObjectDelM.java
@@ -9,13 +9,15 @@
package Ice;
+import Ice.Instrumentation.InvocationObserver;
+
public class _ObjectDelM implements _ObjectDel
{
public boolean
- ice_isA(String __id, java.util.Map<String, String> __context)
+ ice_isA(String __id, java.util.Map<String, String> __context, InvocationObserver __observer)
throws IceInternal.LocalExceptionWrapper
{
- IceInternal.Outgoing __og = __handler.getOutgoing("ice_isA", OperationMode.Nonmutating, __context);
+ IceInternal.Outgoing __og = __handler.getOutgoing("ice_isA", OperationMode.Nonmutating, __context, __observer);
try
{
try
@@ -59,10 +61,10 @@ public class _ObjectDelM implements _ObjectDel
}
public void
- ice_ping(java.util.Map<String, String> __context)
+ ice_ping(java.util.Map<String, String> __context, InvocationObserver __observer)
throws IceInternal.LocalExceptionWrapper
{
- IceInternal.Outgoing __og = __handler.getOutgoing("ice_ping", OperationMode.Nonmutating, __context);
+ IceInternal.Outgoing __og = __handler.getOutgoing("ice_ping", OperationMode.Nonmutating, __context, __observer);
try
{
__og.writeEmptyParams();
@@ -97,10 +99,10 @@ public class _ObjectDelM implements _ObjectDel
}
public String[]
- ice_ids(java.util.Map<String, String> __context)
+ ice_ids(java.util.Map<String, String> __context, InvocationObserver __observer)
throws IceInternal.LocalExceptionWrapper
{
- IceInternal.Outgoing __og = __handler.getOutgoing("ice_ids", OperationMode.Nonmutating, __context);
+ IceInternal.Outgoing __og = __handler.getOutgoing("ice_ids", OperationMode.Nonmutating, __context, __observer);
try
{
__og.writeEmptyParams();
@@ -135,10 +137,10 @@ public class _ObjectDelM implements _ObjectDel
}
public String
- ice_id(java.util.Map<String, String> __context)
+ ice_id(java.util.Map<String, String> __context, InvocationObserver __observer)
throws IceInternal.LocalExceptionWrapper
{
- IceInternal.Outgoing __og = __handler.getOutgoing("ice_id", OperationMode.Nonmutating, __context);
+ IceInternal.Outgoing __og = __handler.getOutgoing("ice_id", OperationMode.Nonmutating, __context, __observer);
try
{
__og.writeEmptyParams();
@@ -173,10 +175,11 @@ public class _ObjectDelM implements _ObjectDel
}
public boolean
- ice_invoke(String operation, OperationMode mode, byte[] inParams, ByteSeqHolder outParams, java.util.Map<String, String> __context)
+ ice_invoke(String operation, OperationMode mode, byte[] inParams, ByteSeqHolder outParams,
+ java.util.Map<String, String> __context, InvocationObserver __observer)
throws IceInternal.LocalExceptionWrapper
{
- IceInternal.Outgoing __og = __handler.getOutgoing(operation, mode, __context);
+ IceInternal.Outgoing __og = __handler.getOutgoing(operation, mode, __context, __observer);
try
{
__og.writeParamEncaps(inParams);
@@ -204,9 +207,9 @@ public class _ObjectDelM implements _ObjectDel
}
public void
- ice_flushBatchRequests()
+ ice_flushBatchRequests(InvocationObserver observer)
{
- IceInternal.BatchOutgoing out = new IceInternal.BatchOutgoing(__handler);
+ IceInternal.BatchOutgoing out = new IceInternal.BatchOutgoing(__handler, observer);
out.invoke();
}