Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
com.datastax.driver.core.policies |
Policies that allow to control some of the behavior of the DataStax Java driver for Cassandra.
|
Modifier and Type | Method and Description |
---|---|
RetryPolicy |
Query.getRetryPolicy()
Returns the retry policy sets for this query, if any.
|
RetryPolicy |
PreparedStatement.getRetryPolicy()
Returns the retry policy sets for this prepared statement, if any.
|
Modifier and Type | Method and Description |
---|---|
Query |
Query.setRetryPolicy(RetryPolicy policy)
Sets the retry policy to use for this query.
|
PreparedStatement |
PreparedStatement.setRetryPolicy(RetryPolicy policy)
Convenience method to set a default retry policy for the
BoundStatement
created from this prepared statement. |
Cluster.Builder |
Cluster.Builder.withRetryPolicy(RetryPolicy policy)
Configures the retry policy to use for the new cluster.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultRetryPolicy
The default retry policy.
|
class |
DowngradingConsistencyRetryPolicy
A retry policy that sometimes retry with a lower consistency level than
the one initially requested.
|
class |
FallthroughRetryPolicy
A retry policy that never retry (nor ignore).
|
class |
LoggingRetryPolicy
A retry policy that wraps another policy, logging the decision made by its sub-policy.
|
Modifier and Type | Method and Description |
---|---|
static RetryPolicy |
Policies.defaultRetryPolicy()
The default retry policy.
|
RetryPolicy |
Policies.getRetryPolicy()
The retry policy in use.
|
Constructor and Description |
---|
LoggingRetryPolicy(RetryPolicy policy)
Creates a new
RetryPolicy that logs the decision of policy . |
Policies(LoadBalancingPolicy loadBalancingPolicy,
ReconnectionPolicy reconnectionPolicy,
RetryPolicy retryPolicy)
Creates a new
Policies object using the provided policies. |
Copyright © 2014. All Rights Reserved.