summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/RetryTask.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-05-23 11:59:44 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-05-23 11:59:44 +0200
commitd81701ca8182942b7936f9fd84a019b695e9c890 (patch)
treedc036c9d701fbbe1afad67782bd78572c0f61974 /java/src/IceInternal/RetryTask.java
parentFixed bug ICE-5543: stringToIdentity bug with escaped escapes (diff)
downloadice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.bz2
ice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.xz
ice-d81701ca8182942b7936f9fd84a019b695e9c890.zip
Added support for invocation timeouts and ACM heartbeats
Diffstat (limited to 'java/src/IceInternal/RetryTask.java')
-rw-r--r--java/src/IceInternal/RetryTask.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceInternal/RetryTask.java b/java/src/IceInternal/RetryTask.java
index fb75a5468f0..e1c44452448 100644
--- a/java/src/IceInternal/RetryTask.java
+++ b/java/src/IceInternal/RetryTask.java
@@ -24,11 +24,11 @@ class RetryTask implements TimerTask
{
try
{
- _outAsync.__send(false);
+ _outAsync.__invoke(false);
}
catch(Ice.LocalException ex)
{
- _outAsync.__exceptionAsync(ex);
+ _outAsync.__invokeExceptionAsync(ex);
}
}
}
@@ -36,7 +36,7 @@ class RetryTask implements TimerTask
public void
destroy()
{
- _outAsync.__exceptionAsync(new Ice.CommunicatorDestroyedException());
+ _outAsync.__invokeExceptionAsync(new Ice.CommunicatorDestroyedException());
}
private final RetryQueue _queue;