일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- modern concurrency deep dive
- WWDC
- SWIFT
- ios
- 티스토리챌린지
- APNS
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- modern concurrency
- 오블완
- Today
- Total
목록전체 글 (71)
Geon
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..
Cancelvar task = Task { let continue = try await longTask() print(continue)}sleep(1)task.cancel()- 비동기 동작중, 취소를 콜하면 에러를 던진다.- yield 는 양보한다는 뜻 (중단 포인트를 만들어 준다)
Task- 비동기의 단위이다.- 내부에 self를 참조하고 있을때 기존의 DispatchQueue와 다르게 자동으로 self를 해제해준다.(Task closure lifetime)- 즉 캡쳐를 해도 상관은없으나, 필요한 사항이 아니면 할필요가 없다. final class Mock { var image: UIImage? func someFunction() asnyc -> UIImage? { Task { Task.sleep(5) image = UIImage() // self 선언 안해줘도 된다. } }} 출저: https://developer.apple.com/documentation/swift/task#Task-closure-lifetime