addBindListener

abstract fun addBindListener(listener: InvalidationListener)

Identical to addListener, but these listeners are guaranteed to fire BEFORE regular listeners. These should be used for the sole purpose of updating other ObservableValues which are dependent on this Observable.

Note. Use removeListener to remove listeners regardless of whether they were added using addListener or addBindListener.