Rishabh Deep Singh
05/25/2021, 5:41 AMfun throttledClick(
targetView: View,
completionMethod: () -> Unit,
throttleWindow: Long = DOUBLE_CLICK_THROTTLE_WINDOW
) {
RxView.clicks(targetView)
.throttleFirst(throttleWindow, MILLISECONDS)
.subscribe {
completionMethod.invoke()
}
}
Stanley Gomes
05/25/2021, 7:39 AMRishabh Deep Singh
05/25/2021, 9:01 AM