case class QueryOpts(skipN: Int = 0, batchSizeN: Int = 0, flagsN: Int = 0) extends QueryOps with Product with Serializable
A helper to make the query options. You may use the methods to set the fields of this class, or set them directly.
- skipN
the number of documents to skip.
- batchSizeN
the upper limit on the number of documents to retrieve per batch (0 for unspecified)
- flagsN
the query flags
- Annotations
- @deprecated
- Deprecated
(Since version 0.19.8) Internal: will be made private
- Alphabetic
- By Inheritance
- QueryOpts
- Serializable
- Product
- Equals
- QueryOps
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- def awaitData: QueryOpts
Makes the result cursor await data.
Makes the result cursor await data.
import reactivemongo.api.QueryOpts val opts: QueryOpts = QueryOpts().awaitData
- def batchSize(n: Int): QueryOpts
Sets the size of result batches.
- val batchSizeN: Int
- def exhaust: QueryOpts
Sets the flag to return all data returned by the query at once rather than splitting the results into batches.
- def flags(n: Int): QueryOpts
Sets the query (raw) flags.
- val flagsN: Int
- def noCursorTimeout: QueryOpts
Sets the
noTimeout
flag. - def oplogReplay: QueryOpts
Toggles OplogReplay
- def partial: QueryOpts
Sets the flag to return partial data from a query against a sharded cluster in which some shards do not respond rather than throwing an error.
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def skip(n: Int): QueryOpts
Sets how many documents must be skipped at the beginning of the results.
- val skipN: Int
- def slaveOk: QueryOpts
Allows querying of a replica slave (
slaveOk
). - def tailable: QueryOpts
Makes the result cursor tailable.
Makes the result cursor tailable.
import reactivemongo.api.QueryOpts val opts: QueryOpts = QueryOpts().tailable