
com.github.phantomthief.util.GetByCursorDAO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cursor-iterator Show documentation
Show all versions of cursor-iterator Show documentation
A cursor iterator implements for batch build cursor data
The newest version!
/**
*
*/
package com.github.phantomthief.util;
import java.util.List;
/**
* Get data by cursor
*
* @author w.vela
*/
public interface GetByCursorDAO {
/**
* retrieve limited data starting by cursor(inclusive)
*
* @param cursor
* @param limit
* @return
*/
List getByCursor(Id cursor, int limit);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy