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
- Refactoring
- SWIFT
- ribs
- 리팩토링
- HIG
- tableView
- Protocol
- RxCocoa
- swiftUI
- 클린 코드
- Xcode
- 리펙터링
- rxswift
- collectionview
- Observable
- UICollectionView
- 스위프트
- Human interface guide
- uiscrollview
- uitableview
- Clean Code
- combine
- 애니메이션
- swift documentation
- map
- UITextView
- ios
- MVVM
- 리펙토링
- clean architecture
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Combine의 Scheduler (receive(on:), subscribe(on:), delay(for:scheduler:)) 사용 방법 본문
iOS Combine (SwiftUI)
[iOS - SwiftUI] Combine의 Scheduler (receive(on:), subscribe(on:), delay(for:scheduler:)) 사용 방법
jake-kim 2022. 9. 21. 22:01목차) Combine - 목차 링크
Scheduler
- 언제, 어떻게 클로저가 실행될지 정하는 프로토콜
- thread 설정도 가능 (main, global)
- 시간 설정도 가능
Scheduler 사용 방법
- 스레드 변경
- receive(on:): downstream의 스레드 변경
- subscribe(on:): upstream의 스레드 변경
- receive(on:), subscribe(on:) 안쓴 경우 스레드 확인
- DispatchQueue.global()로 실행한 경우, main thread가 아닌 global thread에서 sink의 클로저 부분이 동작
- 즉, 따로 스케줄러 설정을 하지 않으면 subject의 이벤트를 발행하는 쪽의 스케줄러와 동일하기 sink 클로저 부분이 동작
let subject = PassthroughSubject<Void, Never>()
subject
.sink(receiveValue: { _ in print(Thread.isMainThread) })
subject.send(())
DispatchQueue.global().async {
subject.send(())
}
/*
true
false
*/
- recevie(on:) - downstream에 적용
let subject = PassthroughSubject<Void, Never>()
let cancellable = subject
.handleEvents(receiveOutput: { print("upstream: \(Thread.isMainThread)") })
.receive(on: DispatchQueue.main)
.handleEvents(receiveOutput: { print("downstream: \(Thread.isMainThread)") })
.sink(receiveValue: { _ in print() })
DispatchQueue.global().async {
subject.send(())
}
/*
upstream: false
downstream: true
*/
- subscribe(on:) - upstream에 적용
Just(1)
.map { _ in print(Thread.isMainThread) }
.subscribe(on: DispatchQueue.global())
.sink { print(Thread.isMainThread) }
/*
true
false
*/
- delay를 주어, thread 변경
let cancellable = Just(1)
.receive(on: DispatchQueue.main)
.map { _ in print(Thread.isMainThread) }
.delay(for: 2, scheduler: DispatchQueue.global()) // background thread로 변경
.sink { print(Thread.isMainThread) } // 여기도 background thread
/*
true
false
*/
* 참고
https://developer.apple.com/documentation/combine/immediatescheduler
https://www.vadimbulavin.com/understanding-schedulers-in-swift-combine-framework/
'iOS Combine (SwiftUI)' 카테고리의 다른 글
Comments