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
- Alphabetic
- By Inheritance
- AnalyticsOptions
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- 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
-
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.
-
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.
-
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()
-
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.
-
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
andJsonArray
respectively.- returns
a copy of this with the change applied, for chaining.
-
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.
-
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.
-
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.
-
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.