Packages

case class AnalyticsOptions(parameters: Option[AnalyticsParameters] = None, clientContextId: Option[String] = None, retryStrategy: Option[RetryStrategy] = None, timeout: Option[Duration] = None, priority: Boolean = false, readonly: Option[Boolean] = None, scanConsistency: Option[AnalyticsScanConsistency] = None, parentSpan: Option[RequestSpan] = None, raw: Option[Map[String, Any]] = None) extends Product with Serializable

Customize the execution of an analytics query.

Since

1.0.0

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AnalyticsOptions
  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 AnalyticsOptions(parameters: Option[AnalyticsParameters] = None, clientContextId: Option[String] = None, retryStrategy: Option[RetryStrategy] = None, timeout: Option[Duration] = None, priority: Boolean = false, readonly: Option[Boolean] = None, scanConsistency: Option[AnalyticsScanConsistency] = None, parentSpan: Option[RequestSpan] = None, raw: Option[Map[String, Any]] = None)

Value Members

  1. def clientContextId(contextId: String): AnalyticsOptions

    Adds a client context ID to the request, that will be sent back in the response, allowing clients to meaningfully trace requests/responses when many are exchanged.

    Adds a client context ID to the request, that will be sent back in the response, allowing clients to meaningfully trace requests/responses when many are exchanged.

    returns

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

  2. def parameters(values: AnalyticsParameters): AnalyticsOptions

    Provides named or positional parameters, for queries parameterised that way.

    Provides named or positional parameters, for queries parameterised that way.

    See AnalyticsParameters for details.

    returns

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

  3. def parentSpan(value: RequestSpan): AnalyticsOptions

    Sets the parent RequestSpan.

    Sets the parent RequestSpan.

    returns

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

    Annotations
    @Volatile()
  4. def priority(value: Boolean): AnalyticsOptions

    Specify that this is a high-priority request.

    Specify that this is a high-priority request. The default is false.

    returns

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

  5. def raw(raw: Map[String, Any]): AnalyticsOptions

    Allows providing custom JSON key/value pairs for advanced usage.

    Allows providing custom JSON key/value pairs for advanced usage.

    If available, it is recommended to use the methods on this object to customize the query. This method should only be used if no such setter can be found (i.e. if an undocumented property should be set or you are using an older client and a new server-configuration property has been added to the cluster).

    Note that the values will be passed through a JSON encoder, so do not provide already encoded JSON as the value. If you want to pass objects or arrays, you can use JsonObject and JsonArray respectively.

    returns

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

  6. def readonly(readonly: Boolean): AnalyticsOptions

    Specify whether this is a readonly request, e.g.

    Specify whether this is a readonly request, e.g. one that performs no mutations.

    The default is false.

    returns

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

  7. def retryStrategy(retryStrategy: RetryStrategy): AnalyticsOptions

    Sets the RetryStrategy to use.

    Sets the RetryStrategy to use.

    returns

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

  8. def scanConsistency(scanConsistency: AnalyticsScanConsistency): AnalyticsOptions

    Scan consistency for the query

    Scan consistency for the query

    scanConsistency

    the index scan consistency to be used; see AnalyticsScanConsistency for details

    returns

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

  9. def timeout(timeout: Duration): AnalyticsOptions

    Sets a maximum timeout for processing.

    Sets a maximum timeout for processing.

    timeout

    the duration of the timeout.

    returns

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