// ********************************************************************** // // Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_INCOMING_ASYNC_H #define ICE_INCOMING_ASYNC_H #include #include namespace Ice { class ICE_API AMDCallback : virtual public Ice::LocalObject { public: virtual void ice_exception(const ::std::exception&) = 0; virtual void ice_exception() = 0; }; } namespace IceInternal { // // We need virtual inheritance from AMDCallback, because we use multiple // inheritance from Ice::AMDCallback for generated AMD code. // class ICE_API IncomingAsync : public IncomingBase, virtual public Ice::AMDCallback { public: IncomingAsync(Incoming&); // Adopts the argument. It must not be used afterwards. void __deactivate(Incoming&); virtual void ice_exception(const ::std::exception&); virtual void ice_exception(); protected: void __response(); void __exception(const std::exception&); void __exception(); bool __validateResponse(bool); private: // // We need a separate InstancePtr, because _is and _os only hold a // Instance* for optimization. // const InstancePtr _instanceCopy; // // We need a separate ConnectionIPtr, because IncomingBase only // holds a ConnectionI* for optimization. // const Ice::ConnectionIPtr _connectionCopy; const bool _retriable; bool _active; }; } namespace Ice { class ICE_API AMD_Object_ice_invoke : virtual public Ice::AMDCallback { public: virtual void ice_response(bool, const std::vector&) = 0; virtual void ice_response(bool, const std::pair&) = 0; }; } namespace IceAsync { namespace Ice { class ICE_API AMD_Object_ice_invoke : public ::Ice::AMD_Object_ice_invoke, public IceInternal::IncomingAsync { public: AMD_Object_ice_invoke(IceInternal::Incoming&); virtual void ice_response(bool, const std::vector< ::Ice::Byte>&); virtual void ice_response(bool, const std::pair&); }; } } #endif