diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-01 09:26:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-01 09:26:44 +0200 |
commit | 19077d22e78f93212445c6969045e736b4a466d7 (patch) | |
tree | 484d4b0dc9a791c9f8f0c4b3dbf212856aba1f55 /cpp/include/Ice/OutgoingAsync.h | |
parent | Updated recursive mutex check (diff) | |
download | ice-19077d22e78f93212445c6969045e736b4a466d7.tar.bz2 ice-19077d22e78f93212445c6969045e736b4a466d7.tar.xz ice-19077d22e78f93212445c6969045e736b4a466d7.zip |
Fixed ICE-7941 - scheduleCallback now provides the connection to the dispatcher work item, fixed naming of AsyncResult private methods
Diffstat (limited to 'cpp/include/Ice/OutgoingAsync.h')
-rw-r--r-- | cpp/include/Ice/OutgoingAsync.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h index 33e0d4b2e14..572515e0324 100644 --- a/cpp/include/Ice/OutgoingAsync.h +++ b/cpp/include/Ice/OutgoingAsync.h @@ -101,14 +101,14 @@ public: virtual void throwLocalException() const; - virtual bool waitForResponse(); - virtual Ice::InputStream* startReadParams(); - virtual void endReadParams(); - virtual void readEmptyParams(); - virtual void readParamEncaps(const ::Ice::Byte*&, ::Ice::Int&); - virtual void throwUserException(); - - virtual void scheduleCallback(const CallbackPtr&); + virtual bool _waitForResponse(); + virtual Ice::InputStream* _startReadParams(); + virtual void _endReadParams(); + virtual void _readEmptyParams(); + virtual void _readParamEncaps(const ::Ice::Byte*&, ::Ice::Int&); + virtual void _throwUserException(); + + virtual void _scheduleCallback(const CallbackPtr&); #endif void attachRemoteObserver(const Ice::ConnectionInfoPtr& c, const Ice::EndpointPtr& endpt, Ice::Int requestId) |