Packages

case class ViewOptions(namespace: Option[DesignDocumentNamespace] = None, reduce: Option[Boolean] = None, limit: Option[Int] = None, group: Option[Boolean] = None, groupLevel: Option[Int] = None, inclusiveEnd: Option[Boolean] = None, skip: Option[Int] = None, onError: Option[ViewErrorMode] = None, debug: Option[Boolean] = None, order: Option[ViewOrdering] = None, key: Option[String] = None, startKeyDocId: Option[String] = None, endKeyDocId: Option[String] = None, endKey: Option[String] = None, startKey: Option[String] = None, keys: Option[String] = None, retryStrategy: Option[RetryStrategy] = None, timeout: Option[Duration] = None, scanConsistency: Option[ViewScanConsistency] = None, parentSpan: Option[RequestSpan] = None) extends Product with Serializable

Customize the execution of a view.

Since

1.0.0

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ViewOptions
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ViewOptions(namespace: Option[DesignDocumentNamespace] = None, reduce: Option[Boolean] = None, limit: Option[Int] = None, group: Option[Boolean] = None, groupLevel: Option[Int] = None, inclusiveEnd: Option[Boolean] = None, skip: Option[Int] = None, onError: Option[ViewErrorMode] = None, debug: Option[Boolean] = None, order: Option[ViewOrdering] = None, key: Option[String] = None, startKeyDocId: Option[String] = None, endKeyDocId: Option[String] = None, endKey: Option[String] = None, startKey: Option[String] = None, keys: Option[String] = None, retryStrategy: Option[RetryStrategy] = None, timeout: Option[Duration] = None, scanConsistency: Option[ViewScanConsistency] = None, parentSpan: Option[RequestSpan] = None)

Value Members

  1. def debug(value: Boolean): ViewOptions

    Enable debugging on view queries.

    Enable debugging on view queries.

    returns

    this for further chaining

  2. def endKey(value: Any): ViewOptions

    Specifies the key to stop returning results at.

    Specifies the key to stop returning results at.

    returns

    this for further chaining

  3. def endKeyDocId(value: String): ViewOptions

    Specifies the document id to stop returning results at within a number of results should endKey have multiple entries within the index.

    Specifies the document id to stop returning results at within a number of results should endKey have multiple entries within the index.

    returns

    this for further chaining

  4. def group(value: Boolean): ViewOptions

    Group the results using the reduce function to a group or single row.

    Group the results using the reduce function to a group or single row.

    Important: this setter and groupLevel should not be used together. It is sufficient to only set the grouping level only and use this setter in cases where you always want the highest group level implicitly.

    returns

    this for further chaining

  5. def groupLevel(level: Int): ViewOptions

    Specifies the depth within the key to group results.

    Specifies the depth within the key to group results.

    Important: this setter and groupLevel should not be used together. It is sufficient to only set the grouping level only and use this setter in cases where you always want the highest group level implicitly.

    returns

    this for further chaining

  6. def inclusiveEnd(value: Boolean): ViewOptions

    Specifies whether the specified end key should be included in the result.

    Specifies whether the specified end key should be included in the result.

    returns

    this for further chaining

  7. def key(value: Any): ViewOptions

    Specifies a specific key to fetch from the index.

    Specifies a specific key to fetch from the index.

    returns

    this for further chaining

  8. def keys(values: Iterable[Any]): ViewOptions

    Specifies a specific set of keys to fetch from the index.

    Specifies a specific set of keys to fetch from the index.

    returns

    this for further chaining

  9. def limit(value: Int): ViewOptions

    Limit the number of the returned documents to the specified number.

    Limit the number of the returned documents to the specified number.

    returns

    this for further chaining

  10. def namespace(value: DesignDocumentNamespace): ViewOptions

    Sets in which namespace the view exists.

    Sets in which namespace the view exists.

    returns

    this for further chaining

  11. def onError(value: ViewErrorMode): ViewOptions

    Sets the response in the event of an error.

    Sets the response in the event of an error.

    returns

    this for further chaining

  12. def order(value: ViewOrdering): ViewOptions

    Specifies the results ordering.

    Specifies the results ordering. See ViewOrdering for details.

    returns

    this for further chaining

  13. def parentSpan(value: RequestSpan): ViewOptions

    Sets the parent RequestSpan.

    Sets the parent RequestSpan.

    returns

    a copy of this with the change applied, for chaining.

    Annotations
    @Volatile()
  14. def reduce(value: Boolean): ViewOptions

    Explicitly enable/disable the reduce function on the query.

    Explicitly enable/disable the reduce function on the query.

    returns

    this for further chaining

  15. def retryStrategy(strategy: RetryStrategy): ViewOptions

    Sets what retry strategy to use if the operation fails.

    Sets what retry strategy to use if the operation fails.

    strategy

    the retry strategy to use

    returns

    a copy of this with the change applied, for chaining.

  16. def scanConsistency(scanConsistency: ViewScanConsistency): ViewOptions

    Sets what scan consistency to use.

    Sets what scan consistency to use. See ViewScanConsistency for details.

    scanConsistency

    the scan consistency to use

    returns

    a copy of this with the change applied, for chaining.

  17. def skip(value: Int): ViewOptions

    Skip this number of records before starting to return the results.

    Skip this number of records before starting to return the results.

    returns

    this for further chaining

  18. def startKey(value: Any): ViewOptions

    Specifies the key to skip to before beginning to return results.

    Specifies the key to skip to before beginning to return results.

    returns

    this for further chaining

  19. def startKeyDocId(value: String): ViewOptions

    Specifies the document id to start returning results at within a number of results should startKey have multiple entries within the index.

    Specifies the document id to start returning results at within a number of results should startKey have multiple entries within the index.

    returns

    this for further chaining

  20. def timeout(timeout: Duration): ViewOptions

    When to timeout the operation.

    When to timeout the operation.

    returns

    this for further chaining