Package com.vaadin.flow.data.provider
Interface ArrayUpdater
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
GridArrayUpdater,HierarchicalArrayUpdater,TreeGridArrayUpdater
public interface ArrayUpdater extends Serializable
Array update strategy aware class.For internal use only. May be renamed or removed in a future release.
- Since:
- 1.0
- Author:
- Vaadin Ltd
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceArrayUpdater.UpdateArray updater strategy.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitialize()Initialize the array.ArrayUpdater.UpdatestartUpdate(int sizeChange)Starts update of an array.
-
-
-
Method Detail
-
startUpdate
ArrayUpdater.Update startUpdate(int sizeChange)
Starts update of an array.- Parameters:
sizeChange- the size of the array where changes happened- Returns:
- array update strategy
-
initialize
void initialize()
Initialize the array.
-
-