后台任务的多个实例

时间:2016-02-18 12:19:51

标签: c# background win-universal-app background-process

如何在UWP-App中启动相同后台任务的多个实例?

我在本教程中注册它:https://msdn.microsoft.com/en-us/library/windows/apps/mt299100.aspx?f=255&MSPPError=-2147217396

我第一次这样做是有效的,但当我用不同的名字注册第二个任务时,我得到一个例外:

System.Exception:没有足够的配额可用于处理此命令。 (HRESULT异常:0x80070718)

1 个答案:

答案 0 :(得分:1)

您获得的错误是与系统上的虚拟内存相关的general error

根据您提到的教程,您只会注册一次任务,除非您更改以下步骤(注册过程的第一步):

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

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

BackgroundTaskRegistration.AllTasks的重点是列举所有应用程序的注册后台任务。

这意味着任务可以注册一次,两次或根据需要注册(尽管我不能想到你现在想要这样的任何场景)。

因此,为了注册多个实例,您需要做的就是为每个要注册的实例调用以下方法:

private BackgroundTaskRegistration RegisterTask(
            Type taskType,
            SystemTriggerType systemTriggerType,
            SystemConditionType systemConditionType = SystemConditionType.Invalid)
{
    var builder = new BackgroundTaskBuilder();

    /// A string identifier for the background task.
    builder.Name = taskType.Name;

    /// The entry point of the task.
    /// This HAS to be the full name of the background task: {Namespace}.{Class name}
    builder.TaskEntryPoint = taskType.FullName;

    /// The specific trigger event that will fire the task on our application.
    builder.SetTrigger(new SystemTrigger(systemTriggerType, false));

    /// A condition for the task to run.
    /// If specified, after the event trigger is fired, the OS will wait for
    /// the condition situation to happen before executing the task.
    if (systemConditionType != SystemConditionType.Invalid)
    {
        builder.AddCondition(new SystemCondition(systemConditionType));
    }

    /// Register the task and returns the registration output.
    return builder.Register();
}

请记住,在调用BackgroundExecutionManager.RequestAccessAsync()方法时,系统或用户可能会拒绝您的应用程序访问后台任务系统。

可能阻碍您的另一个问题是,如果系统资源不足,它可能无法注册或执行后台任务,以便为更重要的任务节省资源。