gpt4 book ai didi

c# - 调用异步回调但有时不执行

转载 作者:太空狗 更新时间:2023-10-30 01:32:05 24 4
gpt4 key购买 nike

Silverlight 项目。

在我后面的 View 代码中,我调用了 View Model 中的一个方法来获取值。

 public MyViewModel ViewModel
{
get
{
if (this.viewModel == null)
this.viewModel = new MyViewModel();
return this.viewModel;
}
set
{
if (this.viewModel != value)
{
this.viewModel = value;
}
}
}

但是异步回调没有被调用。有时它被延迟调用。因此,我得到的值是 1900-01-01 00:00:00.000 而不是正确的日期时间。

DateTime value;
public void GetDateTime()
{
var proxy = new WcfClient();
proxy.GetCurrentDateTimeCompleted -= ProxyGetCurrentDateTimeCompleted;
proxy.GetCurrentDateTimeCompleted += ProxyGetCurrentDateTimeCompleted;
proxy.GetCurrentDateTimeAsync();
}

private void ProxyGetCurrentDateTimeCompleted(object sender, GetCurrentDateTimeCompletedEventArgs args)
{
try
{
value = args.Result;

在后面的代码中调用它。

this.viewModel.GetDateTime();

更新 1

根据评论,我添加了一些解释。 View 有一个复选框。如果我单击它或取消单击它,将弹出一个带有是/否按钮的消息框。无论您选择是或否,我都会在 MessageBoxYesNoSelection_Closed 事件中记录日期和时间。事件方法还在后面的代码中。

复选框部分代码为:

if (clickedCheckBox != null)
{
var msgBoxControl = new MessageBoxControl();
msgBoxControl.Closed -= MessageBoxYesNoSelection_Closed;
msgBoxControl.Closed += MessageBoxYesNoSelection_Closed;

if (clickedCheckBox.IsChecked == true)
{
var curDateTime = this.ViewModel.value;// 1900-01-01 00:00:00.000

MessageBoxYesNoSelection_Closed 中,我们获取值。

this.ViewModel.GetDateTime();// WCF async call
this.ViewModel.UpdateValue(value); // another WCF async call, need value from GetDateTime() method's return result.
this.ViewModel.UpdateAnotherValue(value, user); // third WCF async call

我发现有时异步回调虽然被调用了,但并没有执行。

最佳答案

我猜你正在经历 race condition ,因为您没有等待 this.ViewModel.GetDateTime() 调用,因此在大多数情况下,设置值的回调 (ProxyGetCurrentDateTimeCompleted) 在您等待之前未被调用在下一条语句中使用该值 (this.ViewModel.UpdateValue(value))。

最简单的解决方案是使用 asyncawait 描述 herehere .

如果您不能这样做,另一种解决方案是将依赖于该值的代码移动到回调方法中。

更新 1

在 Silverlight 4 和 .NET Framework 4.0 中可以使用 asyncawait。参见 Microsoft.Bcl.Async想要查询更多的信息。但是,此方法至少需要 Visual Studio 2012,因此如果您无法切换到较新的 Visual Studio 版本,则此方法不适合您。

在这种情况下,我们的想法是将依赖于值的代码移动到回调方法中。所以一开始你只会调用 GetDateTime():

this.ViewModel.GetDateTime(); // WCF async call

然后在回调方法中调用其他方法:

private void ProxyGetCurrentDateTimeCompleted(object sender, GetCurrentDateTimeCompletedEventArgs args)
{
value = args.Result;
UpdateValue(value); // another WCF async call, need value from GetDateTime()
UpdateAnotherValue(value, user); // third WCF async call
}

更新2

根据您的最后一条评论,我建议您重构您的应用程序,以便您可以使用第一次更新中所示的方法。将数据存储在代码后面和 View 模型中似乎有点奇怪。但是,如果您想要快速解决方案,您也可以等待回调手动设置值。请参阅以下代码作为入门示例:

DateTime value;
bool wcfCallInProgress;
public void GetDateTime()
{
var proxy = new WcfClient();
proxy.GetCurrentDateTimeCompleted -= ProxyGetCurrentDateTimeCompleted;
proxy.GetCurrentDateTimeCompleted += ProxyGetCurrentDateTimeCompleted;
wcfCallInProgress = true;
proxy.GetCurrentDateTimeAsync();
}

private void ProxyGetCurrentDateTimeCompleted(object sender, GetCurrentDateTimeCompletedEventArgs args)
{
value = args.Result;
wcfCallInProgress = false;
}

现在您可以添加一个循环,等待值设置完毕:

this.ViewModel.GetDateTime();// WCF async call

while (this.ViewModel.wcfCallInProgress)
{
Thread.Sleep(10);
}

this.ViewModel.UpdateValue(value); // another WCF async call, need value from GetDateTime() method's return result.
this.ViewModel.UpdateAnotherValue(value, user); // third WCF async call

如果您使用这种方法,则必须确保超时和异常不会成为问题。否则你可能会陷入无限循环。

关于c# - 调用异步回调但有时不执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38383219/

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