Uses of Interface
io.ebean.docstore.DocQueryContext
-
Packages that use DocQueryContext Package Description io.ebean -
-
Uses of DocQueryContext in io.ebean
Methods in io.ebean with parameters of type DocQueryContext Modifier and Type Method Description <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.
-