We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.data.provider.
Interface ArrayUpdater
-
All Superinterfaces:
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 interface
ArrayUpdater.Update
Array updater strategy.
-
Method Summary
All Methods Modifier and Type Method Description void
initialize()
Initialize the array.
ArrayUpdater.Update
startUpdate(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 happenedReturns:
array update strategy
-
initialize
void initialize()
Initialize the array.
-
-