Uses of Interface
io.ebean.docstore.DocQueryContext
-
Uses of DocQueryContext in io.ebean
Modifier and TypeMethodDescription<T> T
DocumentStore.find
(DocQueryContext<T> request) Return the bean by fetching it's content from the document store.<T> void
DocumentStore.findEach
(DocQueryContext<T> query, Consumer<T> consumer) Execute the query against the document store with the expectation of a large set of results that are processed in a scrolling resultSet fashion.<T> void
DocumentStore.findEachWhile
(DocQueryContext<T> query, Predicate<T> consumer) Execute the query against the document store with the expectation of a large set of results that are processed in a scrolling resultSet fashion.<T> List<T>
DocumentStore.findList
(DocQueryContext<T> request) Execute the find list query.<T> PagedList<T>
DocumentStore.findPagedList
(DocQueryContext<T> request) Execute the query against the document store returning the paged list.