예제 #1
0
파일: EPG.cs 프로젝트: bietiekay/YAPS
 public epgThreadInstance(MulticastEPGSource EDSource, Hashtable EPGEvents)
 {
     EPGDataSource = EDSource;
     EPG_Events = EPGEvents;
     EPG_Thread_Class = new EPGThread(EPGDataSource, EPGEvents);
     EPG_Thread = new Thread(new ThreadStart(EPG_Thread_Class.EPG_Thread));
 }
예제 #2
0
        public EPGThread(MulticastEPGSource epg_datasource, Hashtable EPGEvents)
        {
            done = false;
            EPG_Events = EPGEvents;
            EPGParser = new Parser();

            EPGParser.SectionFound += new JMS.DVB.EPG.Parser.SectionFoundHandler(SectionFound);

            EPGDataSource = epg_datasource;
        }