Skip to content

Instantly share code, notes, and snippets.

View bembengcs's full-sized avatar

Bambang Cahyo Soetrisno bembengcs

View GitHub Profile
@bembengcs
bembengcs / DebounceTest.kt
Created November 9, 2021 04:00 — forked from k-kagurazaka/DebounceTest.kt
RxJava debounce like operator implementation for kotlin coroutine
launch(UI) {
editText.onTextChanged()
.debounce(1, TimeUnit.SECONDS)
.consumeEach {
Log.d("DebounceTest", "value: $it")
}
}
}
fun EditText.onTextChanged(): ReceiveChannel<String> =