public class BaseLoadEventsHandler extends Object implements LoadEventsHandler
LoadEventsHandler| Constructor and Description |
|---|
BaseLoadEventsHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
onInitialLoad()
Invoked when a
Section performs it's initial fetch. |
void |
onLoadFailed(boolean empty)
Invoked every time the
Section fails loading new elements. |
void |
onLoadStarted(boolean empty)
Invoked every time the
Section starts loading new elements. |
void |
onLoadSucceeded(boolean empty)
Invoked every time the
Section succeeds in loading new elements. |
public void onInitialLoad()
LoadEventsHandlerSection performs it's initial fetch.onInitialLoad in interface LoadEventsHandlerpublic void onLoadStarted(boolean empty)
LoadEventsHandlerSection starts loading new elements.onLoadStarted in interface LoadEventsHandlerempty - true on load startspublic void onLoadSucceeded(boolean empty)
LoadEventsHandlerSection succeeds in loading new elements.onLoadSucceeded in interface LoadEventsHandlerempty - true if after this fetch the dataset is empty.public void onLoadFailed(boolean empty)
LoadEventsHandlerSection fails loading new elements.onLoadFailed in interface LoadEventsHandlerempty - true if after this failure the dataset is empty.