C#是action.BeginInvoke(action.EndInvoke,null)一个好主意吗?

时间:2013-04-12 09:23:38

标签: c# asynchronous delegates

如果我想对某些代码进行“火上浇油并忘记”,但仍希望确保清理我的内存(按Why does asynchronous delegate method require calling EndInvoke?),那么以下内容是否会实现这一目标?

Action myAction = () => LongRunTime();
myAction.BeginInvoke(myAction.EndInvoke,null);

我环顾四周,但没有看到任何地方使用过这种模式。相反,人们使用annonomoyus方法作为其回调(例如The proper way to end a BeginInvoke?)或者他们定义实际的回调方法。由于我没有看到其他人这样做,这让我觉得它不起作用或者是一个坏主意。

谢谢!

2 个答案:

答案 0 :(得分:13)

使用方法组转换而不是委托很好,EndInvoke仍会调用Action。没有别的事情要做,因为这是一场火灾和忘记的召唤。

不幸的是,直接无可辩驳地证明EndInvoke被调用有点困难,因为Action是委托,我们不能只在BCL中的某个类上添加断点。

此代码将(定期)检查BeginInvoke返回的IAsyncResult的某些私有字段,这似乎跟踪EndInvoke是否已被调用:

public partial class MainWindow : Window
{
    private Timer _timer = new Timer(TimerCallback, null, 100, 100);
    private static IAsyncResult _asyncResult;

    public MainWindow()
    {
        InitializeComponent();
    }

    static void LongRunTime()
    {
        Thread.Sleep(1000);
    }

    void Window_Loaded(object sender, RoutedEventArgs args)
    {
        Action myAction = () => LongRunTime();
        _asyncResult = myAction.BeginInvoke(myAction.EndInvoke, null);
    }

    static void TimerCallback(object obj)
    {
        if (_asyncResult != null)
        {
            bool called = ((dynamic)_asyncResult).EndInvokeCalled;
            if (called)
            {
                // Will hit this breakpoint after LongRuntime has completed
                Debugger.Break(); 
                _asyncResult = null;
            }
        }
    }
}

我使用SOS进行了双重检查,发现没有任何托管内存泄漏。我也尝试了其他几个证据,但我认为它们比这个更具间接性。

我在调查期间发现了一些有趣的内容:myAction.BeginInvoke调用将显示在使用检测的个人资料中,但myAction.EndInvoke没有。

答案 1 :(得分:0)

现在它可以像

那样完成
BeginInvoke((Action)(async () =>
{
    // Show child form
    var f = new MyForm();
    f.ShowDialog();
    // Update parent/current
    await UpdateData();
}));