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
- TCA
- concurrency
- xcode
- Firebase
- 개발
- Navigation
- github
- Git
- 모바일
- SWIFTUI
- ObjC
- navigationsplitview
- ios18
- iOS 개발자
- tuist #xcodecloud #ios #ci/cd #swiftlint #firebase
- 정규표현식
- IOS
- composablearchitecture
- iOS 13.0+
- UI
- network
- Tuist
- swiftdata
- uikit
- Alamofire
- test
- SWIFT
- regex
- xcodecloud
- combine
Archives
- Today
- Total
iOS 개발 기록
[Concurrency] async / await 본문
728x90
async/await
Date: 2023년 2월 1일
Tags: SwiftConcurrency
async
public func data(from url: URL, delegate: URLSessionTaskDelegate? = nil) async throws -> (Data, URLResponse)
async
가 붙은 함수는 비동기라는 것을 나타낸다.- 에러를 반환할 수 있을때에는
async throws
키워드로 선언, 호출할 때에는try await
키워드로 호출하게 된다.
await
let (data, response) = try await URLSession.shared.data(for: reqeust)
- 비동기 함수 호출 시 잠재적 중단 시점을 지정하는 피연산자
- 동시성 컨텍스트에서만 실행 가능하다 → 다른
async
함수에서 실행하거나Task{}
를 통해 수동으로 실행 가능함.
참고
'iOS > 비동기처리' 카테고리의 다른 글
[Concurrency] AsyncStream (0) | 2023.04.07 |
---|---|
[Concurrency]Continuation (0) | 2023.04.04 |
[Swift] CompletionHandler (0) | 2023.02.06 |