Geon

Modern Concurrency Deep Dive(10) 본문

iOS developer essential skills/Modern Concurency

Modern Concurrency Deep Dive(10)

jgkim1008 2024. 11. 23. 23:21

비 구조화된 동시성

- 취소 전파 불가능

Task // 메타데이터 상속됨

Task.detached // 메타데이터를 상속하지 않음

 - Task.detached는 분리된 작업이므로, self를 캠쳐해야함

 

구조화된 동시성

- 부모와 자식의 관계를 만듬

- 취소 전파 가능

- 끝나는 시점을 알수 있음

async let

TaskGroup