| 1234567891011121314151617181920212223242526272829303132 |
- #pragma once
- #include "CellBase.h"
- #include "CellAUTOCREATE.h"
- #include "CHttpUtil.h"
- class CCellHttpClient :public CCellBase
- {
- DECLARE_CELL_AUTOCREATE
- public:
- CCellHttpClient(void);
- CCellHttpClient(CCellHttpClient& CellHttpClient);
- virtual ~CCellHttpClient(void);
- ////////////////////////////////////////////////////////////////////////////////
- //继承自CCellBase
- int operate(void);
- CCellBase * copy(void);
- bool fillData(IFlowDataProvider& Provider);
- LPCTSTR name(void) const { return CELL_NAME_HTTP; }
- int maxWaitingTime(void) const { return 0; }
-
- private:
- bool m_IsSaveRs; // SQL语句是否返回记录集标志,1:返回 0:不返回
- int m_SuccessPos; // 执行成功,下一节点
- int m_FailPos; // 执行失败, 下一节点
- CString m_Url; // 要请求的URL
- };
|