Package org.reactfx.collection
Interface LiveList.Observer<E,O>
-
- All Known Subinterfaces:
LiveList.QuasiChangeObserver<E>,LiveList.QuasiModificationObserver<E>
- All Known Implementing Classes:
ChangeListenerWrapper,ChangeObserverWrapper,InvalidationListenerWrapper,ModificationObserverWrapper
public static interface LiveList.Observer<E,O>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OheadOf(ListModificationSequence<? extends E> mods)voidonChange(O change)AccumulatorSizesizeOf(ListModificationSequence<? extends E> mods)<F extends E>
ListModificationSequence<F>tailOf(ListModificationSequence<F> mods)
-
-
-
Method Detail
-
sizeOf
AccumulatorSize sizeOf(ListModificationSequence<? extends E> mods)
-
headOf
O headOf(ListModificationSequence<? extends E> mods)
-
tailOf
<F extends E> ListModificationSequence<F> tailOf(ListModificationSequence<F> mods)
-
onChange
void onChange(O change)
-
-