exception: 작업을 완료한 후 작업을 최종 상태로 전환합니다.
3316 단어 c#
https://stackoverflow.com/questions/15316613/when-should-taskcompletionsourcet-be-used
https://technet.microsoft.com/zh-cn/library/dd449174(v=vs.110).aspx
https://code.msdn.microsoft.com/Windows-Phone-8-Networking-835239c1/sourcecode?fileId=70769&pathId=221052408
관련되다
https://hmemcpy.com/2013/01/turning-old-and-busted-asynchronous-code-into-new-asyncawait-enabled-hotness-with-taskcompletionsourcet/
An attempt was made to transition a task to a final state when it had already completed
TaskCompletionSource is used to create Task objects that don't execute code.
In Real World Scenarios TaskCompletionSource is ideal for I/O bound operations.
This way you get all the benefits of tasks (e.g. return values, continuations etc) without blocking a thread for the duration of the operation.
If your "function" is an IO bound operation it isn't recommended to block a thread using a new Task.
Instead using TaskCompletionSource you can create a slave task to just indicate when your I/O bound operation finishes or faults.
TaskCompletionSource는 비task형 방법에 대해 처리해야 할 업무가 있으며,task로 되돌아갈 수 있으며,result 또는 exception을 가지고 있습니다. 예를 들어(only a event based api is available)
TaskCompletionSource
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C#Task를 사용하여 비동기식 작업을 수행하는 방법라인이 완성된 후에 이 라인을 다시 시작할 수 없습니다.반대로 조인(Join)만 결합할 수 있습니다 (프로세스가 현재 라인을 막습니다). 임무는 조합할 수 있는 것이다. 연장을 사용하여 그것들을 한데 연결시키는 것이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.