Skip to content

Commit 0cc4868

Browse files
authored
Merge pull request #393 from eliotcowley/patch-1
Changing Windows Store Apps to Windows 8.x Apps
2 parents 4ffc0ea + 374bab6 commit 0cc4868

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/parallel/concrt/creating-asynchronous-operations-in-cpp-for-windows-store-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Creating Asynchronous Operations in C++ for Windows Store Apps | Microsoft Docs"
2+
title: "Creating Asynchronous Operations in C++ for Windows 8.x Apps | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
@@ -8,14 +8,14 @@ ms.technology: ["cpp-windows"]
88
ms.tgt_pltfrm: ""
99
ms.topic: "article"
1010
dev_langs: ["C++"]
11-
helpviewer_keywords: ["Windows Store apps, creating C++ async operations", "Creating C++ async operations"]
11+
helpviewer_keywords: ["Windows 8.x apps, creating C++ async operations", "Creating C++ async operations"]
1212
ms.assetid: a57cecf4-394a-4391-a957-1d52ed2e5494
1313
caps.latest.revision: 31
1414
author: "mikeblome"
1515
ms.author: "mblome"
1616
manager: "ghogen"
1717
---
18-
# Creating Asynchronous Operations in C++ for Windows Store Apps
18+
# Creating Asynchronous Operations in C++ for Windows 8.x Apps
1919
This document describes some of the key points to keep in mind when you use the task class to produce Windows ThreadPool-based asynchronous operations in a [!INCLUDE[win8_appname_long](../../build/includes/win8_appname_long_md.md)] app.
2020

2121
The use of asynchronous programming is a key component in the [!INCLUDE[win8_appname_long](../../build/includes/win8_appname_long_md.md)] app model because it enables apps to remain responsive to user input. You can start a long-running task without blocking the UI thread, and you can receive the results of the task later. You can also cancel tasks and receive progress notifications as tasks run in the background. The document [Asynchronous programming in C++](http://msdn.microsoft.com/library/windows/apps/hh780559.aspx) provides an overview of the asynchronous pattern that's available in Visual C++ to create [!INCLUDE[win8_appname_long](../../build/includes/win8_appname_long_md.md)] apps. That document teaches how to both consume and create chains of asynchronous Windows Runtime operations. This section describes how to use the types in ppltasks.h to produce asynchronous operations that can be consumed by another Windows Runtime component and how to control how asynchronous work is executed. Also consider reading [Async programming patterns and tips in Hilo (Windows Store apps using C++ and XAML)](http://msdn.microsoft.com/library/windows/apps/jj160321.aspx) to learn how we used the task class to implement asynchronous operations in Hilo, a [!INCLUDE[win8_appname_long](../../build/includes/win8_appname_long_md.md)] app using C++ and XAML.

0 commit comments

Comments
 (0)