⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queuepropertyfactory.h

📁 java开源的企业总线.xmlBlaster
💻 H
字号:
/*------------------------------------------------------------------------------Name:      QueuePropertyFactory.hProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Holding callback queue propertiesAuthor:    laghi------------------------------------------------------------------------------*//** * Factory to construct org::xmlBlaster::util::queue::QueueProperty objects * <p /> * See org::xmlBlaster::util::qos::ConnectQos for XML syntax. * @see org.xmlBlaster.client.qos.ConnectQos */#ifndef _UTIL_QUEUE_QUEUEPROPERTYFACTORY_H#define _UTIL_QUEUE_QUEUEPROPERTYFACTORY_H#include <util/qos/storage/QueuePropertyBase.h>#include <util/parser/XmlHandlerBase.h>#include <util/qos/address/AddressFactory.h>#include <util/qos/address/Address.h>#include <util/qos/address/CallbackAddress.h>namespace org { namespace xmlBlaster { namespace util { namespace qos { namespace storage {class Dll_Export QueuePropertyFactory : public parser::XmlHandlerBase{private:   const std::string  ME;   QueuePropertyBase  prop_;   bool               inAddress_;   org::xmlBlaster::util::qos::address::AddressFactory addressFactory_;   std::string  RELATING;public:   QueuePropertyFactory(org::xmlBlaster::util::Global& global);   ~QueuePropertyFactory();   QueuePropertyBase getQueueProperty();   /**    * Called for XML callback start tag    */   void startElement(const std::string &name, const parser::AttributeMap& attrs);   void characters(const std::string &ch);   /** End element. */   void endElement(const std::string &name);/*   QueuePropertyBase&   readQueueProperty(const std::string& literal, QueuePropertyBase& prop);*/   QueuePropertyBase readObject(const std::string& literal);};}}}}} // namespaces#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -