暂停异步操作,等待UWP应用中的用户输入 本指南演示了如何在通用Windows平台(UWP)应用程序中暂时停止执行异步方法,直到触发特定事件(例如按钮单击)。 当长期运行的异步过程(在此示例中
)需要用户交互之前,这一点特别有用。> GetResults
方法1:使用
>
SemaphoreSlim
类提供直接的信号传导机制。 这是实施它的方法:
SemaphoreSlim
<code class="language-csharp">private SemaphoreSlim signal = new SemaphoreSlim(0, 1); // Initially 0 permits, max 1 // Event handler to release the semaphore private void buttonContinue_Click(object sender, RoutedEventArgs e) { signal.Release(); } // Asynchronous method pausing for the signal private async Task GetResults() { // ... Perform lengthy operations ... await signal.WaitAsync(); // Pause until the signal is released // ... Continue execution after the event ... }</code>
>
通过创建代表用户互动的完成的ATaskCompletionSource<bool>
> >提供了一种更灵活的方法。
TaskCompletionSource<bool>
这两种方法有效地暂停了Task<bool>
的异步操作,直到发生指定事件,避免了效率低下的轮询技术。 选择最适合您应用程序的体系结构和复杂性的方法。
以上是如何暂停异步方法执行,直到发生在地铁应用中?的详细内容。更多信息请关注PHP中文网其他相关文章!