Module swim.store
Package swim.store

Interface ListDataContext

All Superinterfaces:
DataContext
All Known Implementing Classes:
ListDataProxy, ListDataView

public interface ListDataContext extends DataContext
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    didDrop(long lower)
     
    void
    didInsert(long index, swim.structure.Value newValue)
     
    void
    didRemove(long index, swim.structure.Value oldValue)
     
    void
    didTake(long upper)
     
    void
    didUpdate(long index, swim.structure.Value newValue, swim.structure.Value oldValue)
     

    Methods inherited from interface swim.store.DataContext

    didChange, didCommit
  • Method Details

    • didUpdate

      void didUpdate(long index, swim.structure.Value newValue, swim.structure.Value oldValue)
    • didInsert

      void didInsert(long index, swim.structure.Value newValue)
    • didRemove

      void didRemove(long index, swim.structure.Value oldValue)
    • didDrop

      void didDrop(long lower)
    • didTake

      void didTake(long upper)
    • didClear

      void didClear()