summaryrefslogtreecommitdiff
path: root/java/src/Ice/_ObjectDelM.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-12-16 13:21:06 +0000
committerMarc Laukien <marc@zeroc.com>2002-12-16 13:21:06 +0000
commit6ed1dedc9c45a35209d174c5c018bd68637b39d9 (patch)
tree9f38fdc277bae25dafeabe193c98c6e331fca5f3 /java/src/Ice/_ObjectDelM.java
parentminor fixes (diff)
downloadice-6ed1dedc9c45a35209d174c5c018bd68637b39d9.tar.bz2
ice-6ed1dedc9c45a35209d174c5c018bd68637b39d9.tar.xz
ice-6ed1dedc9c45a35209d174c5c018bd68637b39d9.zip
reimplementation of shutdown/destroy/deactivate/etc.
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r--java/src/Ice/_ObjectDelM.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java
index 12aabfcd57a..37c7dc17119 100644
--- a/java/src/Ice/_ObjectDelM.java
+++ b/java/src/Ice/_ObjectDelM.java
@@ -164,7 +164,7 @@ public class _ObjectDelM implements _ObjectDel
__reference = from.__reference;
__connection = from.__connection;
- __connection.incUsageCount();
+ __connection.incProxyCount();
}
protected IceInternal.Connection __connection;
@@ -212,7 +212,7 @@ public class _ObjectDelM implements _ObjectDel
}
assert(j < connections.length);
__connection = connections[j];
- __connection.incUsageCount();
+ __connection.incProxyCount();
}
else
{
@@ -257,7 +257,7 @@ public class _ObjectDelM implements _ObjectDel
IceInternal.OutgoingConnectionFactory factory = __reference.instance.outgoingConnectionFactory();
__connection = factory.create(filteredEndpoints);
assert(__connection != null);
- __connection.incUsageCount();
+ __connection.incProxyCount();
}
catch (LocalException ex)
{
@@ -453,7 +453,7 @@ public class _ObjectDelM implements _ObjectDel
{
if(__connection != null)
{
- __connection.decUsageCount();
+ __connection.decProxyCount();
}
while(__outgoingCache != null)