텍스트 메시지 쓰기 - 메시지 영역 debounce timeout 500 -> 100ms로 조정

This commit is contained in:
klaus 2023-12-05 14:19:16 +09:00
parent fb9c138eb4
commit dabf8563b8
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class TextMessageWriteActivity : BaseActivity<ActivityTextMessageWriteBinding>(
private fun bindData() {
compositeDisposable.add(
binding.etMessage.textChanges().skip(1)
.debounce(500, TimeUnit.MILLISECONDS)
.debounce(100, TimeUnit.MILLISECONDS)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe {