Interface ThreadedTableModelListener

All Known Implementing Classes:
IncrementalLoadJob, ThreadedTableModelListenerAdapter

public interface ThreadedTableModelListener
A listener to be notified of ThreadedTableModel loading changes.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    void
    loadingFinished(boolean wasCancelled)
    Called when the table is done loading data.
    void
    Called when the table begins to load new data.
    void
    Called when the model has new data to be loaded, but has not yet started the load process.
  • Method Details Link icon

    • loadPending Link icon

      void loadPending()
      Called when the model has new data to be loaded, but has not yet started the load process.
    • loadingStarted Link icon

      void loadingStarted()
      Called when the table begins to load new data.
    • loadingFinished Link icon

      void loadingFinished(boolean wasCancelled)
      Called when the table is done loading data.
      Parameters:
      wasCancelled - true if the load was cancelled.