일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WWDC
- modern concurrency deep dive
- 티스토리챌린지
- ios
- APNS
- SWIFT
- modern concurrency
- 오블완
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- Today
- Total
목록티스토리챌린지 (21)
Geon
TaskGroupawait withTaskGroup(of: UIImage?.self, returning: [UIImage].self) { group in group.addTask { // Do SomeThing // ex: 2번 쓰레드 작업됨 } group.addTask { // Do SomeThing g // ex: 3번 쓰레드 작업됨 } for await image in group { // 비동기 반복문이며 ex: 4번 쓰레드 작업됨,Race Condition 해결해줌 if let image = image { imageArray.append(image) } }}- groupTask중 먼저 끝나는 순서대로 imageArrayAppend 수행- group은 내부적으로 task가 끝나는 시..
Task.Sleep- GCD의 sleep과 Task.sleep의 차이는 blocking과 Non-blocking의 차이이다- GCD의 sleep은 blocking 됨(mainThread에 사용하면 안됨)- Task의 sleep은 sleep되면 시스템에 Thread를 반납해 다른 동작을 처리할수 있음. 병렬 처리가 아닌경우func fetch(urlArray: [String]) async -> [UIImage] { var array: [UIImage] = [] for url in urlArray { // 하나 실행되고 기다리고 하나실행됨(병렬 처리가 아님) if let image = await fetchImage(url) { array.append(image) } //T..
Delegate with Continuation- continuation을 변수로 설정한후, Delegate에서 continuation을 resume하면 비동기를 실행시킬수 있다.- refactor -> addAsyncWrapper 설정하면 콜백방식에서 continuation으로 자동으로 바꿔준다.- refactor -> alternative 콜백방식으로 사용할수 있게 해준다.final class MockModule: NSObject, CLLocationManagerDelegate { private var continuation: LCContinuation? func loactionManager(didUpdateLocations locations: [CLLocation]) { continua..
Continuation- 동기 코드를 비동기 코드로 연결해주는 매커니즘- 콜백 방식의 api, delegate 방식의 api를 async/await 방식으로 전환가능- 반드시 한번만 호출해야함(호출을 안해도 누수 발생할수 있다.)// 런타임에 체크 (안전성)// Continuation의 잘못된 사용이나 에러 플래그를 감지하여 오류 나타냄await withCheckedContinuationtry await withCheckedThrowingContinuation// 런타임에 체크 하지 않음// 퍼포먼스 중요할떄await withUnsafeContinuationtry await awitWithUnSafeThrowingContinuation
WithUnsafeContinuation- 런타임중 확인을 안하기에, continuation이 두번 호출되면 앱이 크래시가 난다. WithCheckedContinuation- 런타임중 확인을 하기에, continuation을 두번 호출해도 안전하다. func asyncFetchImage() async -> UIImage? { return await withCheckedContinuation { continuation in fetchImage { image in continuation.resume(with.success(image)) continuation.resume(with.success(image)) // checked 라 안전 }}
신규 URLSession API - 기존 completion으로 복잡함으로 간단하게 변경할수 있다. - Completion 누락등 휴먼 에러도 쉽게 찾아낼수 있다.func fetch() try await -> User? { do { let url = URL(string: "www.test.com") let response = try await URLSession.shared.data(from: url) guard (response as? HTTPURLResponse)?.stateCode.contains(200..