diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-05-23 11:59:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-05-23 11:59:44 +0200 |
commit | d81701ca8182942b7936f9fd84a019b695e9c890 (patch) | |
tree | dc036c9d701fbbe1afad67782bd78572c0f61974 /cpp/src/Ice/RetryQueue.cpp | |
parent | Fixed bug ICE-5543: stringToIdentity bug with escaped escapes (diff) | |
download | ice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.bz2 ice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.xz ice-d81701ca8182942b7936f9fd84a019b695e9c890.zip |
Added support for invocation timeouts and ACM heartbeats
Diffstat (limited to 'cpp/src/Ice/RetryQueue.cpp')
-rw-r--r-- | cpp/src/Ice/RetryQueue.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/RetryQueue.cpp b/cpp/src/Ice/RetryQueue.cpp index 9f494810a6c..e10c09b1396 100644 --- a/cpp/src/Ice/RetryQueue.cpp +++ b/cpp/src/Ice/RetryQueue.cpp @@ -30,11 +30,11 @@ IceInternal::RetryTask::runTimerTask() { try { - _outAsync->__send(false); + _outAsync->__invoke(false); } catch(const Ice::LocalException& ex) { - _outAsync->__exceptionAsync(ex); + _outAsync->__invokeExceptionAsync(ex); } } } @@ -42,7 +42,7 @@ IceInternal::RetryTask::runTimerTask() void IceInternal::RetryTask::destroy() { - _outAsync->__exceptionAsync(CommunicatorDestroyedException(__FILE__, __LINE__)); + _outAsync->__invokeExceptionAsync(CommunicatorDestroyedException(__FILE__, __LINE__)); } bool |