Uses of Interface
org.reactfx.collection.ListChange
-
Packages that use ListChange Package Description org.reactfx.collection -
-
Uses of ListChange in org.reactfx.collection
Methods in org.reactfx.collection that return ListChange Modifier and Type Method Description static <E> ListChange<E>
QuasiListChange. instantiate(QuasiListChange<? extends E> change, javafx.collections.ObservableList<E> list)
Methods in org.reactfx.collection that return types with arguments of type ListChange Modifier and Type Method Description default EventStream<ListChange<? extends E>>
LiveList. changes()
static <E> EventStream<ListChange<? extends E>>
LiveList. changesOf(javafx.collections.ObservableList<E> list)
Method parameters in org.reactfx.collection with type arguments of type ListChange Modifier and Type Method Description default void
LiveList. addChangeObserver(java.util.function.Consumer<? super ListChange<? extends E>> observer)
default Subscription
LiveList. observeChanges(java.util.function.Consumer<? super ListChange<? extends E>> observer)
static <E> Subscription
LiveList. observeChanges(javafx.collections.ObservableList<E> list, java.util.function.Consumer<? super ListChange<? extends E>> observer)
default void
LiveList. removeChangeObserver(java.util.function.Consumer<? super ListChange<? extends E>> observer)
Constructor parameters in org.reactfx.collection with type arguments of type ListChange Constructor Description ChangeObserverWrapper(javafx.collections.ObservableList<T> list, java.util.function.Consumer<? super ListChange<? extends T>> delegate)
-