diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-11-26 14:18:59 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-11-26 14:18:59 -0330 |
commit | eb9894afe8da3a9ef6a7da0ca27e0a6b32676b0c (patch) | |
tree | b0abd1a4d60e7842b1b74ac8c9bbb02797db8a8b /cpp/include/Ice/Proxy.h | |
parent | Removed getCookie from C# AsyncResult (diff) | |
download | ice-eb9894afe8da3a9ef6a7da0ca27e0a6b32676b0c.tar.bz2 ice-eb9894afe8da3a9ef6a7da0ca27e0a6b32676b0c.tar.xz ice-eb9894afe8da3a9ef6a7da0ca27e0a6b32676b0c.zip |
Added invoke test
Cleaned up invoke demo
Fixed order of paramaters in end_ice_invoke in C++
Diffstat (limited to 'cpp/include/Ice/Proxy.h')
-rw-r--r-- | cpp/include/Ice/Proxy.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/include/Ice/Proxy.h b/cpp/include/Ice/Proxy.h index 0fd5603a2d1..c3729e4826c 100644 --- a/cpp/include/Ice/Proxy.h +++ b/cpp/include/Ice/Proxy.h @@ -425,7 +425,7 @@ public: return begin_ice_invoke(operation, mode, inParams, &__ctx, __del, __cookie); } - bool end_ice_invoke(const ::Ice::AsyncResultPtr&, ::std::vector< ::Ice::Byte>&); + bool end_ice_invoke(::std::vector< ::Ice::Byte>&, const ::Ice::AsyncResultPtr&); bool ice_invoke(const ::std::string& operation, ::Ice::OperationMode mode, @@ -503,7 +503,7 @@ public: return begin_ice_invoke(operation, mode, inParams, &__ctx, __del, __cookie); } - bool end_ice_invoke(const ::Ice::AsyncResultPtr&, ::std::pair<const ::Ice::Byte*, const ::Ice::Byte*>&); + bool end_ice_invoke(::std::pair<const ::Ice::Byte*, const ::Ice::Byte*>&, const ::Ice::AsyncResultPtr&); ::Ice::Identity ice_getIdentity() const; ::Ice::ObjectPrx ice_identity(const ::Ice::Identity&) const; @@ -1590,7 +1590,7 @@ public: std::vector< ::Ice::Byte> outParams; try { - __ok = __result->getProxy()->end_ice_invoke(__result, outParams); + __ok = __result->getProxy()->end_ice_invoke(outParams, __result); } catch(const ::Ice::Exception& ex) { @@ -1615,7 +1615,7 @@ public: std::pair<const ::Ice::Byte*, const::Ice::Byte*> outParams; try { - __ok = __result->getProxy()->end_ice_invoke(__result, outParams); + __ok = __result->getProxy()->end_ice_invoke(outParams, __result); } catch(const ::Ice::Exception& ex) { @@ -1670,7 +1670,7 @@ public: std::vector< ::Ice::Byte> outParams; try { - __ok = __result->getProxy()->end_ice_invoke(__result, outParams); + __ok = __result->getProxy()->end_ice_invoke(outParams, __result); } catch(const ::Ice::Exception& ex) { @@ -1697,7 +1697,7 @@ public: std::pair<const ::Ice::Byte*, const::Ice::Byte*> outParams; try { - __ok = __result->getProxy()->end_ice_invoke(__result, outParams); + __ok = __result->getProxy()->end_ice_invoke(outParams, __result); } catch(const ::Ice::Exception& ex) { |