How to cancel a CancellationToken

前端 未结 4 1774
我在风中等你
我在风中等你 2021-02-06 20:30

I start a task, that start other tasks and so forth.
Given that tree, if any task fails the result of the whole operation is useless. I\'m considering using cancellation tok

4条回答
  •  無奈伤痛
    2021-02-06 20:56

    A token it gives you the right to know someone is trying to cancel something. It does not give you the right to actually signal a cancellation. Only the cancellation token source gives you that. This is by design.

提交回复
热议问题