Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- modern concurrency
- WWDC
- 티스토리챌린지
- SWIFT
- modern concurrency deep dive
- ios
- APNS
- 오블완
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
Archives
- Today
- Total
Geon
Modern Concurrency Deep Dive(11) 본문
iOS developer essential skills/Modern Concurency
Modern Concurrency Deep Dive(11)
jgkim1008 2024. 11. 24. 22:48Task Cancel
- 비동기 함수 내에서 작업 취소에 대한 로직을 넣어줘야 작업이 취소됨
func failCancelFunction() asnyc {
// Do something
}
func cancelFunction() asnyc throws {
guard !Task.isCancelled else {
throw CancellationError()
}
// Do Something
}
var task: Task<Void, Never>?
task = Task {
await failCancelFunction() // 취소 동작 안함
await cancelFunction() // 취소 동작함
}
task.cancel()?
'iOS developer essential skills > Modern Concurency' 카테고리의 다른 글
Modern Concurrency Deep Dive(13) (1) | 2024.11.26 |
---|---|
Modern Concurrency Deep Dive(12) (0) | 2024.11.25 |
Modern Concurrency Deep Dive(10) (0) | 2024.11.23 |
Modern Concurrency Deep Dive(9) (0) | 2024.11.22 |
Modern Concurrency Deep Dive(8) (0) | 2024.11.21 |