All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.devocative.wickomp.grid.IGridAsyncDataSource Maven / Gradle / Ivy

There is a newer version: 2.11
Show newest version
package org.devocative.wickomp.grid;

import java.util.List;

public interface IGridAsyncDataSource extends IDataSource {
	/**
	 * This method returns a page of result
	 *
	 * @param pageIndex  page number during pagination process starts with 1
	 * @param pageSize   size of a page during pagination process
	 * @param sortFields list of fields for sorting the result (optional)
	 */
	void asyncList(long pageIndex, long pageSize, List sortFields);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy