diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/data/DataProviderClientRpc.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/data/DataProviderClientRpc.java b/shared/src/com/vaadin/shared/data/DataProviderClientRpc.java index 315df89c9b..0c0fd77308 100644 --- a/shared/src/com/vaadin/shared/data/DataProviderClientRpc.java +++ b/shared/src/com/vaadin/shared/data/DataProviderClientRpc.java @@ -28,12 +28,9 @@ import elemental.json.JsonObject; public interface DataProviderClientRpc extends ClientRpc { /** - * Sets the size of the client-side DataSource. - * - * @param size - * the new data set size + * Informs the client-side DataSource that all data has been invalidated. */ - void resetSize(long size); + void reset(); /** * Sets the data of the client-side DataSource to match the given data |