Package org.nuxeo.ecm.core.api.scroll
Interface ScrollRequest
-
- All Known Implementing Classes:
DocumentScrollRequest,EmptyScrollRequest,GenericScrollRequest,StaticScrollRequest
public interface ScrollRequestA Scroll request.- Since:
- 11.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetName()The Scroll implementation name.default StringgetReference()Gets a reference associated with the scroll request.intgetSize()The number of items to return per iteration.StringgetType()The type of Scroll.
-
-
-
Method Detail
-
getType
String getType()
The type of Scroll.
-
getName
String getName()
The Scroll implementation name. Returnsnullfor default implementation.
-
getSize
int getSize()
The number of items to return per iteration.
-
getReference
default String getReference()
Gets a reference associated with the scroll request.- Since:
- 2021.44
-
-