QueryOptions Methods |
The QueryOptions type exposes the following members.
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetConsistencyLevel |
The default consistency level used by queries.
| |
GetDefaultIdempotence |
Gets the default idempotence for all queries.
| |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetPageSize |
The default page size used by queries.
| |
GetSerialConsistencyLevel |
The default serial consistency level used by queries.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IsPrepareOnAllHosts |
Determines whether the driver should prepare statements on all hosts in the cluster.
| |
IsReprepareOnUp |
Determines whether the driver should re-prepare all cached prepared statements on a host when its marks
that host back up.
| |
SetConsistencyLevel |
Sets the default consistency level to use for queries.
The consistency level set through this method will be use for queries
that don't explicitely have a consistency level.
| |
SetDefaultIdempotence |
Sets the default idempotence for all queries.
| |
SetPageSize |
Sets the default page size to use for SELECT queries.
The page size set through this method will be use for queries
that don't explicitely have a page size.
| |
SetPrepareOnAllHosts |
Sets whether the driver should prepare statements on all hosts in the cluster.
A statement is normally prepared in two steps: prepare the query on a single host in the cluster; if that succeeds, prepare on all other hosts. This option controls whether step 2 is executed. It is enabled by default. | |
SetReprepareOnUp |
Set whether the driver should re-prepare all cached prepared statements on a host when it marks it back up.
This option is enabled by default. | |
SetRetryOnTimeout |
Determines if the client should retry when it didn't hear back from a host within ReadTimeoutMillis.
DEPRECATED: Instead, use OnRequestError(IStatement, Configuration, Exception, Int32) to control the behavior when OperationTimedOutException is obtained. | |
SetSerialConsistencyLevel |
Sets the default serial consistency level to use for queries.
The serial consistency level set through this method will be use for queries
that don't explicitely have a serial consistency level.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |