FallthroughRetryPolicyOnWriteTimeout Method |
Defines whether to retry and at which consistency level on a write timeout.
Namespace: CassandraAssembly: Cassandra (in Cassandra.dll) Version: 3.0.9 (git 5ca22bb)
Syntax public RetryDecision OnWriteTimeout(
IStatement query,
ConsistencyLevel cl,
string writeType,
int requiredAcks,
int receivedAcks,
int nbRetry
)
Parameters
- query
- Type: CassandraIStatement
the original query that timeouted. - cl
- Type: CassandraConsistencyLevel
the original consistency level of the write that timeouted.
- writeType
- Type: SystemString
the type of the write that timeouted. - requiredAcks
- Type: SystemInt32
the number of acknowledgments that were required
to achieve the requested consistency level. - receivedAcks
- Type: SystemInt32
the number of acknowledgments that had been
received by the time the timeout exception was raised. - nbRetry
- Type: SystemInt32
the number of retry already performed for this
operation.
Return Value
Type:
RetryDecisionRetryDecision.rethrow().
Implements
IRetryPolicyOnWriteTimeout(IStatement, ConsistencyLevel, String, Int32, Int32, Int32)See Also