object ScanType

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScanType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class RangeScan(from: ScanTerm = ScanTerm.minimum(), to: ScanTerm = ScanTerm.maximum()) extends ScanType with Product with Serializable

    Scans documents, from document from to document to.

    Scans documents, from document from to document to.

    Defaults to returning all documents in the collection.

  2. case class SamplingScan(limit: Long, seed: Long = Random.nextLong()) extends ScanType with Product with Serializable

    Samples documents randomly from the collection until reaching limit documents.

    Samples documents randomly from the collection until reaching limit documents.

    seed

    seed for the random number generator that selects the documents. If not specified, defaults to a random number. CAVEAT: Specifying the same seed does not guarantee the same documents are selected.

Value Members

  1. def prefixScan(documentIdPrefix: String): RangeScan