当前位置:  开发笔记 > 编程语言 > 正文

在UI线程上运行代码但在当前线程上调用回调?

如何解决《在UI线程上运行代码但在当前线程上调用回调?》经验,为你挑选了1个好方法。

我正在写一个Windows 10 Universal应用程序.我需要在UI线程上运行一些特定的代码,但是一旦代码完成,我想在首先调用请求的同一个线程上运行一些代码.见下面的例子:

    private static async void RunOnUIThread(Action callback)
    {
        //<---- Currently NOT on the UI-thread

        await Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
        {
            //Do some UI-code that must be run on the UI thread.
            //When this code finishes: 
            //I want to invoke the callback on the thread that invoked the method RunOnUIThread
            //callback() //Run this on the thread that first called RunOnUIThread()
        });
    }

我怎么做到这一点?



1> Thomas Leves..:

只需在以下后调用回调await Dispatcher.RunAsync:

private static async void RunOnUIThread(Action callback)
{
    //<---- Currently NOT on the UI-thread

    await Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
    {
        //Do some UI-code that must be run on the UI thread.
    });

    callback();
}

回调函数将在来自线程池的工作线程上调用(但不一定是相同的RunOnUIThread,但是你可能不需要这样做)

如果你真的想在同一个线程上调用回调,不幸的是它变得有点乱,因为工作线程没有同步上下文(允许你在特定线程上调用代码的机制).所以你必须Dispatcher.RunAsync同步调用以确保你保持在同一个线程:

private static void RunOnUIThread(Action callback)
{
    //<---- Currently NOT on the UI-thread

    Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
    {
        //Do some UI-code that must be run on the UI thread.
    }).GetResults();

    callback();
}

注意:永远不要GetResults从UI线程调用:它会导致您的应用程序死锁.从工作线程,在某些情况下可以接受,因为没有同步上下文,所以它不能死锁.

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有