Record Class IdPage<T>

java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdPage<T>
Type Parameters:
T - The type of data
Record Components:
items - The items
pageIndex - The page index (starting at 0)
pageCount - The total page count
pageFirstOffset - The offset of the first item in the list

public record IdPage<T>(List<T> items, int pageIndex, int pageCount, long pageFirstOffset) extends Record
A page of items.