AsyncSerialExecutor<TResult> 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
公用程式類別,提供非同步函式的序列執行。 在 中,可以在重新進入的細微性程式碼內,以非重新進入 (序列) 方式執行某些方法。
public class AsyncSerialExecutor<TResult>
type AsyncSerialExecutor<'Result> = class
Public Class AsyncSerialExecutor(Of TResult)
類型參數
- TResult
從這個執行程式叫用的函式傳回的基礎型別。
- 繼承
-
AsyncSerialExecutor<TResult>
建構函式
AsyncSerialExecutor<TResult>() |
公用程式類別,提供非同步函式的序列執行。 在 中,可以在重新進入的細微性程式碼內,以非重新進入 (序列) 方式執行某些方法。 |
方法
AddNext(Func<Task<TResult>>) |
提交下一個函式以供執行。 它會在先前提交的所有函式完成之後執行,而不會交錯其執行。 傳回代表這個指定函式執行的承諾。 當指定的函式執行完成時,將會解析傳回的承諾。 |