Interface DataArrivedHandler

All Superinterfaces:
EventHandler

public interface DataArrivedHandler extends EventHandler
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notification fired when data has arrived from the server and has been successfully integrated into the cache.
  • Method Details

    • onDataArrived

      void onDataArrived(DataArrivedEvent event)
      Notification fired when data has arrived from the server and has been successfully integrated into the cache.

      When dataArrived() fires, an immediate call to getRange() with the startRow and endRow passed as arguments will return a List with no loading markers.

      Note that dataArrived() won't fire in the case of the owning component filtering with unchanged criteria (for example using ListGrid.fetchData() or ListGrid.filterData()). To support backward compatibility, the property reapplyUnchangedLocalFilter can be set to force dataArrived() to be called if the ResultSet is filtering locally and the criteria haven't changed but are narrower than the criteria used to fetch the current cache.

      Parameters:
      event - the event