Module swim.store
Package swim.store

Interface SpatialDataContext<S>

All Superinterfaces:
DataContext
All Known Implementing Classes:
SpatialDataProxy, SpatialDataView

public interface SpatialDataContext<S> extends DataContext
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    didMove(swim.structure.Value key, long newX, long newY, swim.structure.Value newValue, long oldX, long oldY, swim.structure.Value oldValue)
     
    void
    didRemove(swim.structure.Value key, long x, long y, swim.structure.Value oldValue)
     
    void
    didUpdate(swim.structure.Value key, long x, long y, swim.structure.Value newValue, swim.structure.Value oldValue)
     

    Methods inherited from interface swim.store.DataContext

    didChange, didCommit
  • Method Details

    • didUpdate

      void didUpdate(swim.structure.Value key, long x, long y, swim.structure.Value newValue, swim.structure.Value oldValue)
    • didMove

      void didMove(swim.structure.Value key, long newX, long newY, swim.structure.Value newValue, long oldX, long oldY, swim.structure.Value oldValue)
    • didRemove

      void didRemove(swim.structure.Value key, long x, long y, swim.structure.Value oldValue)
    • didClear

      void didClear()