gpt4 book ai didi

c# - 调用一个每 5 秒返回一个值的方法

转载 作者:行者123 更新时间:2023-11-30 14:00:29 29 4
gpt4 key购买 nike

我想调用一个每隔几秒返回一个值的方法。我曾尝试将 TimerelapsedEventandler 一起使用,但在这种情况下该方法的返回类型为 void。我使用 TimerTask 类在 Java 中执行相同的任务。

我希望它在 .NET 2.0 中,因为我正在使用 Visual Studio 2005。

下面是我遇到问题的程序。我尝试使用匿名方法,但在这种情况下 response 的值在匿名方法之外不存在:

public static string Run(string address)
{
string response = "A";
Timer t = new Timer();
t.Elapsed += delegate
{
response = callURL(address);
console.writeln(response);
// The actual response value is printed here
};
t.Interval = 3000;
t.Start();
Console.WriteLine("response string is " + response);
// response string is A

return response;
}

public static string callURL(string address)
{
className sig = new ClassName();
String responseBody = sig.getURL(address);

return responseBody;
}

如何在Run方法中获取response的值并将其发送给Run方法的调用者?

最佳答案

您可以让调用者为带有计时器的类提供回调委托(delegate)以传回值。

public class YourClass
{
public static void Run(string address, Action<string> callback)
{
Timer t = new Timer();
t.Elapsed += delegate {
var response = callURL(address);

callback(response);
};
t.Interval = 3000;
t.Start();
}
}

public class OtherClass
{
public void ProcessResponse(string response)
{
// do whatever you want here to handle the response...
// you can write it out, store in a queue, put in a member, etc.
}

public void StartItUp()
{
YourClass.Run("http://wwww.somewhere.net", ProcessResponse);
}
}

更新:如果您希望调用者 ( OtherClass ) 能够取消计时器,您可以简单地从 Action<string> 更改为到 Func<string, bool>并让调用者 ( OtherClass ) 返回一个关于是否停止计时器的 bool 值...

public class YourClass
{
public static void Run(string address, Func<string, bool> callback)
{
Timer t = new Timer();
t.Elapsed += delegate {
var response = callURL(address);

// if callback returns false, cancel timer
if(!callback(response))
{
t.Stop();
}
};
t.Interval = 3000;
t.Start();
}
}

public class OtherClass
{
public bool ProcessResponse(string response)
{
// do whatever you want here to handle the response...
// you can write it out, store in a queue, put in a member, etc.
// check result to see if it's a certain value...
// if it should keep going, return true, otherwise return false
}

public void StartItUp()
{
YourClass.Run("http://wwww.somewhere.net", ProcessResponse);
}
}

关于c# - 调用一个每 5 秒返回一个值的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10626008/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com