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 |
StatementWrapper.getRetryPolicy() |
RetryPolicy |
Statement.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.
|
RetryPolicy |
DefaultPreparedStatement.getRetryPolicy() |
Modifier and Type | Method and Description |
---|---|
Statement |
StatementWrapper.setRetryPolicy(RetryPolicy policy) |
Statement |
Statement.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. |
PreparedStatement |
DefaultPreparedStatement.setRetryPolicy(RetryPolicy policy) |
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 retries with a lower consistency level than
the one initially requested.
|
class |
FallthroughRetryPolicy
A retry policy that never retries (nor ignores).
|
class |
IdempotenceAwareRetryPolicy
Deprecated.
As of version 3.1.0, the driver doesn't retry non-idempotent statements for write timeouts or unexpected
errors anymore. It is no longer necessary to wrap your retry policies in this policy.
|
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.
|
Modifier and Type | Method and Description |
---|---|
Policies.Builder |
Policies.Builder.withRetryPolicy(RetryPolicy retryPolicy)
Sets the retry policy.
|
Constructor and Description |
---|
IdempotenceAwareRetryPolicy(RetryPolicy childPolicy)
Deprecated.
Creates a new instance.
|
LoggingRetryPolicy(RetryPolicy policy)
Creates a new
RetryPolicy that logs the decision of policy . |
Copyright © 2012–2017. All rights reserved.