Open keitin opened 8 years ago
.asDriver()
について
reference https://github.com/ReactiveX/RxSwift/blob/master/Documentation/Units.md#driver-unit
特徴
↓
throttle(3.0)
について
reference http://cocoadocs.org/docsets/RxSwift/0.9/
300ms throttle interval
>- throttle(300, $.mainScheduler)
0.3秒間のインターバル → 0.3秒ごとに監視。 おそらくタイピングが止まったタイミングで発火させたい感じ
distinctUntilChanged()
reference http://cocoadocs.org/docsets/RxSwift/0.9/
// forward only distinct values
>- distinctUntilChanged
別々の値のみ追う → 重複したvalueは弾いてくれる