使应用程序在发布请求后等待,直到网站使用事件处理程序返回响应

本文关键字:网站 事件处理 响应 返回 程序 应用程序 布请求 请求 等待 | 更新日期: 2023-09-27 18:07:59

我想写一个事件处理程序,当网站返回一些响应时触发一个方法。

我的应用程序通过张贴URL从几个网站获取响应。不幸的是,有时网站在一些延迟后返回响应(可能需要1到5秒),这导致我的应用程序抛出错误,因为下一个请求执行而不等待前一个请求获得响应。

我实际上可以在应用程序发布的每个请求之后放置睡眠时间,但这似乎不是正确的方式,因为如果我设置5秒作为睡眠时间,如果假设网站在1秒内返回响应,则使进程不必要地等待4秒。

为了节省一些处理时间,我决定添加事件处理程序,它应该允许应用程序在我们得到前一个请求的响应后运行下一个请求。

所以我尝试了这样的东西,我可以调用触发器,但它不是我想要的方式工作。

我的意图是创建一个触发器,使下一个请求在得到前一个请求的响应后运行,最多可以等待5秒。

有人能帮我一下吗,提前谢谢。

public delegate void ChangedEventHandler(string response);
public class ListWithChangedEvent : EventArgs
{
    public event ChangedEventHandler Changed;
    protected virtual void OnChanged(string response) 
    {
        if (Changed != null)
         {
             Changed(response);
         }
      }
  public void Validate(string response) 
  {
      OnChanged(response);
  }
}
public class EventListener 
{
  private ListWithChangedEvent _list;
  public EventListener(ListWithChangedEvent list) 
  {
      _list = list;
      _list.Changed += new ChangedEventHandler(ListChanged);
  }
  private void ListChanged(string response) 
  {
      if (!response.IsEmpty())
      {
          return;
      }
  }
}

//发送请求后验证响应

private void _postRequestAndParseResponse()
    {
       _performPostRequest(_returnTailPart(_urls.CommonUrl), argumentsList);
        ListWithChangedEvent list = new ListWithChangedEvent();
        EventListener listener = new EventListener(list);
        list.Validate(_docNode.InnerHtml);
   }

使应用程序在发布请求后等待,直到网站使用事件处理程序返回响应

HTTP超时是大多数HTTP客户端的内置功能,是指定超时请求web资源的最简单方法。

如果你正在使用WebRequest,你可以使用它的timeout属性。下面是一个例子:

public void Test()
{
    const int timeoutMs = 5000;
    sw.Start();
    RequestWithTimeout("https://google.com", timeoutMs);
    RequestWithTimeout("http://deelay.me/7000/google.com", timeoutMs);
    RequestWithTimeout("http://thisurelydoesnnotexist.com", timeoutMs);
    RequestWithTimeout("http://google.com", timeoutMs);
}
private void RequestWithTimeout(string url, int timeoutMs)
{
    try
    {
        Log("Webrequest at " + url + " starting");
        WebRequest req = WebRequest.Create(url);
        req.Timeout = timeoutMs;                                
        var response = req.GetResponse();                
        Log("Webrequest at " + url + " finished");
    }
    catch (WebException webException)
    {
        Log("WebRequest failed: " + webException.Status);
    }
    catch (Exception ex)
    {
        Log(ex.ToString());
    }
}
输出:

    0ms | Webrequest at https://google.com starting
  169ms | Webrequest at https://google.com finished
  170ms | Webrequest at http://deelay.me/7000/google.com starting
 5186ms | WebRequest failed: Timeout
 5186ms | Webrequest at http://thisurelydoesnnotexist.com starting
 5247ms | WebRequest failed: NameResolutionFailure
 5247ms | Webrequest at http://google.com starting
 5311ms | Webrequest at http://google.com finished

如果你正在使用WebClient,你也可以很容易地配置超时。看看这个答案:https://stackoverflow.com/a/6994391/5056245

如果你真的需要在方法调用级别实现timeout,看看这个:在返回值

的函数上实现超时

如果这些答案都不适合你,请告诉我们你是如何请求你的网络资源的

您没有指定如何调用url。如果你使用HttpClint (http://www.asp.net/web-api/overview/advanced/calling-a-web-api-from-a-net-client),可以这样做:

using(var client = new HttpClient())
{
    var task = client.PostAsync(url1, ..., ...);
    if(!task.wait(5000))
    {
        //task not completed in specified interval (5 sec), take action accordingly.
    }
    else
    {
        // task completed within 5 second, take action accordingly, you can access the response using task.Result
    }
    // Continue with other urls as needed
}

也可以有许多其他方法。请张贴你的代码调用url,如果这不能回答你的问题。