com.vaadin.data.provider.
Class DataCommunicator.SimpleDataRequestRpc
- java.lang.Object
-
- com.vaadin.data.provider.DataCommunicator.SimpleDataRequestRpc
-
All Implemented Interfaces:
Enclosing class:
protected class DataCommunicator.SimpleDataRequestRpc extends Object implements DataRequestRpc
Simple implementation of collection data provider communication. All data is sent by server automatically and no data is requested by client.
See Also:
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SimpleDataRequestRpc()
-
Method Summary
All Methods Modifier and Type Method Description void
dropRows(elemental.json.JsonArray keys)
Informs the server that items have been dropped from the client cache.
void
requestRows(int firstRowIndex, int numberOfRows, int firstCachedRowIndex, int cacheSize)
Request rows from the server.
-
-
-
Method Detail
-
requestRows
public void requestRows(int firstRowIndex, int numberOfRows, int firstCachedRowIndex, int cacheSize)
Description copied from interface:
DataRequestRpc
Request rows from the server.
Specified by:
requestRows
in interfaceDataRequestRpc
Parameters:
firstRowIndex
- the index of the first requested rownumberOfRows
- the number of requested rowsfirstCachedRowIndex
- the index of the first cached rowcacheSize
- the number of cached rows
-
dropRows
public void dropRows(elemental.json.JsonArray keys)
Description copied from interface:
DataRequestRpc
Informs the server that items have been dropped from the client cache.
Specified by:
dropRows
in interfaceDataRequestRpc
Parameters:
keys
- array of dropped keys mapping to items
-
-