com.smartgwt.client.data.events
Interface HasDataArrivedHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
ResultSet

public interface HasDataArrivedHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addDataArrivedHandler(DataArrivedHandler handler)
          Notification fired when data has arrived from the server and has been successfully integrated into the cache.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addDataArrivedHandler

HandlerRegistration addDataArrivedHandler(DataArrivedHandler handler)
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 Array.LOADING markers.

Parameters:
handler - the dataArrived handler
Returns:
HandlerRegistration used to remove this handler