Exemplo n.º 1
0
        /// <summary>
        /// ctor
        /// </summary>
        public OmcCdrHandler()
        {
            m_db = new OmcCdrDb();

            // the the path where to move processed files
            m_filemovePath = ConfigurationManager.AppSettings["OmcCdrHandlerMoveFolder"];
        }
Exemplo n.º 2
0
        /// <summary>
        /// ctor
        /// </summary>
        public OmcCdrHandler()
        {
            m_db = new OmcCdrDb();

            // the the path where to move processed files
            m_filemovePath = ConfigurationManager.AppSettings["OmcCdrHandlerMoveFolder"];
        }
Exemplo n.º 3
0
        public void StartProcessing()
        {
            // inits
            InitializeFromConfig();
            m_db = new OmcCdrDb();

            // launch the file control processing thread
            m_procThread = new Thread(new ThreadStart(ProcessFileControlThread));
            m_procThread.Start();
        }
Exemplo n.º 4
0
        public void StartProcessing()
        {
            // inits
            InitializeFromConfig();
            m_db = new OmcCdrDb();

            // launch the file control processing thread
            m_procThread = new Thread(new ThreadStart(ProcessFileControlThread));
            m_procThread.Start();
        }
Exemplo n.º 5
0
        /// <summary>
        /// ctor
        /// </summary>
        public OmcCiberHandler()
        {
            m_db = new OmcCdrDb();
            m_ciberDb = new CiberDbMgr();
            m_ciberCreator = CiberFileCreator.Instance;
            m_bworksFormatter = new CdrFormatter();

            // the the path where to move processed files
            m_filemovePath = ConfigurationManager.AppSettings["OmcCiberHandlerMoveFolder"];
            m_ciberOutputFileName = ConfigurationManager.AppSettings["CiberOutputFileName"];

            // directory where the ciber file will be
            m_ciberDirectory = ConfigurationManager.AppSettings["CiberFileDirectory"];
        }