public class UnavailableException extends QueryExecutionException
Constructor and Description |
---|
UnavailableException(ConsistencyLevel consistency,
int required,
int alive) |
Modifier and Type | Method and Description |
---|---|
DriverException |
copy()
Copy the exception.
|
int |
getAliveReplicas()
The number of replica that were known to be alive by the Cassandra
coordinator node when it tried to execute the operation.
|
ConsistencyLevel |
getConsistency()
The consistency level of the operation triggering this unavailable exception.
|
int |
getRequiredReplicas()
The number of replica acknowledgements/responses required to perform the
operation (with its required consistency level).
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public UnavailableException(ConsistencyLevel consistency, int required, int alive)
public ConsistencyLevel getConsistency()
public int getRequiredReplicas()
public int getAliveReplicas()
public DriverException copy()
DriverException
This return a new exception, equivalent to the original one, except that because a new object is created in the current thread, the top-most element in the stacktrace of the exception will refer to the current thread (this mainly use for internal use by the driver). The cause of the copied exception will be the original exception.
copy
in class DriverException
Copyright © 2014. All Rights Reserved.