-In asynchronous programming, it's common for one asynchronous operation, on completion, to invoke a second operation. Continuations allow decedent operations to consume the results of the first operation. Traditionally, continuations have been done by using callback methods. In the Task Parallel Library, the same functionality is provided by _continuation tasks_. A continuation task (also known just as a continuation) is an asynchronous task that's invoked by another task, known as the _antecedent_, when the antecedent finishes.
0 commit comments