WP 8.1中的后台任务不止一次运行

时间:2014-08-09 15:52:17

标签: multithreading windows-phone winrt-xaml background-task

我正在尝试实施Windows Phone 8.1通知后台任务。

它实现了一个错误! Toast通知消息将多次出现在操作中心。有时9次。

这是我的代码:

public sealed class my_bg_notifier: IBackgroundTask
    {
        public async void Run(IBackgroundTaskInstance taskInstance)
        {


                var deferral = taskInstance.GetDeferral();

                bool status = await notificationChecker.check();

                if (status)
                {
                    populateNotification(notificationChecker.count);
                }

                deferral.Complete();

        }

}

我尝试调试,所以我在线路状态上设置断点。

我很惊讶它不止一次被调用,这就是为什么我的通知会弹出不止一次。

并且从调试器断点显示的消息清楚地表明有多个线程同时执行相同的工作。

[image]

所以我想通过使用布尔标志来阻止多个线程运行该方法,如下所示:

public sealed class my_bg_notifier: IBackgroundTask
    {

        private static bool isNotBusy = true;

        public async void Run(IBackgroundTaskInstance taskInstance)
        {
            if (isNotBusy)
            {
                isNotBusy = false;
                var deferral = taskInstance.GetDeferral();

                bool status = await notificationChecker.check();

                if (status)
                {
                    populateNotification(notificationChecker.count);
                }

                deferral.Complete();
            }

            isNotBusy = true;
        }
}

但是再次没有用。

我的问题是:
为什么后台任务会被多线程同时运行多次。

我如何阻止这种行为?我应该使用lock关键字吗?

1 个答案:

答案 0 :(得分:1)

Okkkkk !!!这都怪我。在我的代码中,我在每个应用程序启动时注册了后台任务,而没有检查它是否已经注册。

所以我使用下面的代码来检查我的任务是否已注册,然后无需再次注册。

var taskRegistered = false;
var exampleTaskName = "ExampleBackgroundTask";

foreach (var task in Background.BackgroundTaskRegistration.AllTasks)
{
    if (task.Value.Name == exampleTaskName)
    {
        taskRegistered = true;
        break;
     }
}

来源:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh977055.aspx