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)); }
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; }