diff options
Diffstat (limited to 'cpp/include/Ice/OutgoingAsync.h')
-rw-r--r-- | cpp/include/Ice/OutgoingAsync.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h index ef12d8e1b52..6fa3e254be9 100644 --- a/cpp/include/Ice/OutgoingAsync.h +++ b/cpp/include/Ice/OutgoingAsync.h @@ -76,6 +76,21 @@ public: virtual void ice_exception(const Ice::Exception&) = 0; void __invoke(const Ice::ObjectPrx&, const std::string& operation, OperationMode, + const std::vector<Ice::Byte>&, const Context&); + +protected: + + virtual void __response(bool); +}; + +class ICE_API AMI_Array_Object_ice_invoke : public IceInternal::OutgoingAsync +{ +public: + + virtual void ice_response(bool, const std::pair<const Byte*, const Byte*>&) = 0; + virtual void ice_exception(const Ice::Exception&) = 0; + + void __invoke(const Ice::ObjectPrx&, const std::string& operation, OperationMode, const std::pair<const Byte*, const Byte*>&, const Context&); protected: |