T - the data type@FunctionalInterface public interface DataProviderListener<T> extends Serializable
DataProvider| Modifier and Type | Method and Description |
|---|---|
void |
onDataChange(DataChangeEvent<T> event)
Invoked when this listener receives a data change event from a data
source to which it has been added.
|
void onDataChange(DataChangeEvent<T> event)
This event is fired when something has changed in the underlying data. It doesn't allow to distinguish different kind of events (add/remove/update). It means that the method implementation normally just reloads the whole data to refresh.
event - the received event, not nullCopyright © 2025. All rights reserved.