| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*************************************************************************
- 【文件名】 CellContinueQueue.h
- 【功能模块和目的】 继续排队节点类头文件
- 【开发者及日期】 郑石诺 2015/02/03
- 【版本】 V1.0.0
- 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
- 【更改记录】
- *************************************************************************/
- #pragma once
- #include "cellbase.h"
- #include "CellAUTOCREATE.h"
- /*************************************************************************
- 【类名】 CCellContinueQueue
- 【功能】
- 【接口说明】 继续排队节点类
- 【开发者及日期】 郑石诺 2015/02/03
- 【版本】 V1.0.0
- 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
- 【更改记录】
- *************************************************************************/
- class CCellContinueQueue : public CCellBase
- {
- DECLARE_CELL_AUTOCREATE
- public:
- CCellContinueQueue(void);
- CCellContinueQueue( CCellContinueQueue & cellContinueQueue );
- virtual ~CCellContinueQueue(void);
- ////////////////////////////////////////////////////////////////////////////////
- //继承自CCellBase
- int operate(void);
- CCellBase * copy(void);
- bool fillData(IFlowDataProvider& Provider);
- int onOpResultReturn(CPduEntity *a_pPduEntity);
- LPCTSTR name(void) const { return CELL_NAME_CONTINUE_QUEUE; }
- int maxWaitingTime(void) const { return 10 * 60; }
- private:
- CString m_AgentNo; // 坐席工号存储变量
- CString m_AgentExten; // 坐席分机存储变量
- CString m_AudioFile; // 语音文件名
- int m_Timeout; // 最大等待时长
- int m_SuccessPos; // 执行成功的下一节点编号
- int m_TimeoutPos; // 等待超时的下一节点编号
- int m_HangupPos; // 对端挂机的下一节点编号
- };
|