<@U53MK565C> But in this example: ``` RxTextView...
# rx
s
@georgiy.shur But in this example:
Copy code
RxTextView.textChanges(etTest)
                .debouncedBuffer(500, TimeUnit.MILLISECONDS)
                .subscribe { println(it) }
We get always list with N same items, like:
Copy code
[A]
[Abc, Abc]
[Abcdef, Abcdef, Abcdef]
So it's probably not expected behavior.