szymen
06/18/2017, 1:15 PMRxTextView.textChanges(etTest)
.debouncedBuffer(500, TimeUnit.MILLISECONDS)
.subscribe { println(it) }
We get always list with N same items, like:
[A]
[Abc, Abc]
[Abcdef, Abcdef, Abcdef]
So it's probably not expected behavior.