trait QueryOps extends AnyRef

Operations about query.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryOps
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Self

Abstract Value Members

  1. abstract def awaitData: Self

    Toggles AwaitData: Block a little while waiting for more data instead of returning immediately if no data.

    Toggles AwaitData: Block a little while waiting for more data instead of returning immediately if no data. Use along with TailableCursor.

  2. abstract def batchSize(n: Int): Self

    Sets an upper limit on the number of documents to retrieve per batch.

    Sets an upper limit on the number of documents to retrieve per batch. Defaults to 0 (meaning no upper limit - MongoDB decides).

  3. abstract def exhaust: Self

    Toggles Exhaust

  4. abstract def noCursorTimeout: Self

    Toggles NoCursorTimeout: The cursor will not expire automatically

  5. abstract def oplogReplay: Self

    Toggles OplogReplay

  6. abstract def partial: Self

    Toggles Partial: The response can be partial - if a shard is down, no error will be thrown.

  7. abstract def skip(n: Int): Self

    Sets the number of documents to skip.

  8. abstract def slaveOk: Self

    Toggles SlaveOk: The query is might be run on a secondary.

  9. abstract def tailable: Self

    Toggles TailableCursor: Makes the cursor not to close after all the data is consumed.