Uses of Interface
io.ebean.docstore.DocQueryContext
Packages that use DocQueryContext
-
Uses of DocQueryContext in io.ebean
Methods in io.ebean with parameters of type DocQueryContextModifier and TypeMethodDescription<T> TDocumentStore.find(DocQueryContext<T> request) Return the bean by fetching it's content from the document store.<T> voidDocumentStore.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> voidDocumentStore.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.