コード例 #1
0
ファイル: Program.cs プロジェクト: jeason0813/SocioBoard
 private static void PostRssDataThreadMethod(object objProfileType)
 {
     while (true)
     {
         string           strProfileType      = (string)objProfileType;
         RssDataScheduler objRssDataScheduler = new RssDataScheduler();
         Console.WriteLine(objRssDataScheduler.PostRssFeed(strProfileType));
         Thread.Sleep(1000 * 1 * 60);
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: prog-moh/socioboard-core
 private static void PostRssDataThreadMethod(object objProfileType)
 {
     while (true)
     {
         string strProfileType = (string)objProfileType;
         RssDataScheduler objRssDataScheduler = new RssDataScheduler();
         Console.WriteLine(objRssDataScheduler.PostRssFeed(strProfileType));
         Thread.Sleep(1000*1*60);
     }
 }