반응형
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 | 31 |
Tags
- @State
- Xcode
- Operater
- Operators
- RxSwift
- nonisolated
- init?
- vim
- Creating Operators
- nestjs
- Bug
- NavigationLink
- graphql
- RFC1738/1808
- SwiftUI
- subject
- URL(string:)
- swift6
- IOS
- SWIFT
- @Binding
- init
- ios14
- dismiss
- RxCocoa
- NullObject
- @Environment
- typeorm
- @EnvironmentObject
- operator
Archives
- Today
- Total
목록Timer (1)
Tunko Development Diary
RxSwift) Time-based Operators(timer, timeout)
timer timer는 interval 연산자와 다르게 시작 시간을 지정할 수 있습니다. public static func timer(_ dueTime: RxTimeInterval, period: RxTimeInterval? = nil, scheduler: SchedulerType) -> Observable { return Timer( dueTime: dueTime, period: period, scheduler: scheduler ) } dueTime는 구독자에게 이벤트 전달되는 시작 시간입니다. preiod: 파라미터가 반복주기입니다. let disposBag = DisposeBag() print("시작 : \\(Date())") Observable.timer(.seconds(1), period: ...
Development/RxSwift
2022. 6. 7. 16:44