轮询Web服务

时间:2013-10-31 07:58:50

标签: c# winforms service web

我有一个C#桌面Windows表单应用程序。

我每3秒钟调用一次Web服务来检查服务器上目录中的消息。

我有一个while (true)循环,它是由一个线程启动的。在此循环内部,对Web服务进行调用。我知道我应该避免无限循环,但我不知道如何以及时的方式通知我的客户新消息。

我有什么选择吗?

谢谢!

2 个答案:

答案 0 :(得分:1)

您可以使用BackgroundWorker - tutorial

您仍然需要使用while(true)循环,但您可以使用BackgroundWorker的ReportProgress方法与客户端进行通信:

// start the BackgroundWorker somewhere in your code:
DownloadDataWorker.RunWorkerAsync(); //DownloadDataWorker is the BackgroundWorker

然后编写DoWorkProgressChanged

的处理程序
private void DownloadRpdBgWorker_DoWork(object sender, DoWorkEventArgs e)
{
    BackgroundWorker worker = sender as BackgroundWorker;
    while (true)
    {
        worker.ReportProgress(1);
        if (!controller.DownloadServerData())
        {
            worker.ReportProgress(2);
        }
        else
        {
            //data download succesful
            worker.ReportProgress(3);
        }
            System.Threading.Thread.Sleep(3000); //poll every 3 secs
    }
}

private void DownloadRpdBgWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
    switch(e.ProgressPercentage){
        case 1: SetStatus("Trying to fetch new data.."); break;
        case 2: SetStatus("Error communicating with the server"); break;
        case 3: SetStatus("Data downloaded!"); break;
    }
}

答案 1 :(得分:-1)

编辑:很抱歉误读。如果你想每隔3秒做一些事情,请使用计时器:

public static bool Stop = false;

public static void CheckEvery3Sec()
{
   System.Timers.Timer tm = new System.Timers.Timer(3000);
   tm.Start();
   tm.Elapsed += delegate
   {
       if (Stop)
       {
          tm.Stop();
          return;
       }
       ...
   };
}