[RxJava] debounce vs throttle ํจ์ ์ฐจ์ด์ ๋น๊ต
์ธ ๋๋ง๋ค ํท๊ฐ๋ฆฌ๋ debounce, throttle... ์ด๋ฒ ๊ธฐํ์ ํ์คํ ์ ๋ฆฌํด ๋๊ณ , ์ ์ ๊ฐ์ด ํท๊ฐ๋ฆฌ์๋ ๋ถ๋ค์ ์ํด ๊ณต์ ํฉ๋๋ค. ์ง์ ํ
์คํธ๋ ํด๋ณด๋ ์ดํด ์์ ๋ชฉ์ฐจ debounce ํจ์ public final Observable debounce(long timeout, @NonNull TimeUnit unit, @NonNull Scheduler scheduler) { Objects.requireNonNull(unit, "unit is null"); Objects.requireNonNull(scheduler, "scheduler is null"); return RxJavaPlugins.onAssembly(new ObservableDebounceTimed(this, timeout, unit, s..
2021.09.08