Uses of Class
org.opendaylight.controller.cluster.access.concepts.RequestException
-
Packages that use RequestException Package Description org.opendaylight.controller.cluster.access.client This package contains the baseline client infrastructure required to implement clients accessing the data store.org.opendaylight.controller.cluster.access.commands This package defines the messages used to interact with the CDS backend implementation.org.opendaylight.controller.cluster.access.concepts This package defines basic concepts used to interact with the CDS backend implementation. -
-
Uses of RequestException in org.opendaylight.controller.cluster.access.client
Subclasses of RequestException in org.opendaylight.controller.cluster.access.client Modifier and Type Class Description class
RequestTimeoutException
-
Uses of RequestException in org.opendaylight.controller.cluster.access.commands
Subclasses of RequestException in org.opendaylight.controller.cluster.access.commands Modifier and Type Class Description class
ClosedTransactionException
ARequestException
indicating that the backend has received a request for a transaction which has already been closed, either via a successful commit or abort (which is indicated viaClosedTransactionException.isSuccessful()
.class
DeadHistoryException
ARequestException
indicating that the backend has received a request to create a history which has already been retired.class
DeadTransactionException
ARequestException
indicating that the backend has received a request to create a transaction which has already been purged.class
NotLeaderException
General error raised when the recipient of a Request is not the correct backend to talk to.class
OutOfOrderRequestException
ARequestException
indicating that the backend has received a Request whose sequence does not match the next expected sequence for the target.class
OutOfSequenceEnvelopeException
ARequestException
indicating that the backend has received a RequestEnvelope whose sequence does not match the next expected sequence.class
UnknownHistoryException
ARequestException
indicating that the backend has received a request referencing an unknown history.Methods in org.opendaylight.controller.cluster.access.commands with parameters of type RequestException Modifier and Type Method Description ConnectClientFailure
ConnectClientRequest. toRequestFailure(RequestException cause)
LocalHistoryFailure
LocalHistoryRequest. toRequestFailure(RequestException cause)
TransactionFailure
TransactionRequest. toRequestFailure(RequestException cause)
-
Uses of RequestException in org.opendaylight.controller.cluster.access.concepts
Subclasses of RequestException in org.opendaylight.controller.cluster.access.concepts Modifier and Type Class Description class
RetiredGenerationException
General error raised when the recipient of aRequest
determines that the request contains aClientIdentifier
which corresponds to an outdated generation.class
RuntimeRequestException
General error raised when the recipient of aRequest
fails to process a request.class
UnsupportedRequestException
General error raised when the recipient of aRequest
determines that it does not know how to handle the request.Methods in org.opendaylight.controller.cluster.access.concepts that return RequestException Modifier and Type Method Description @NonNull RequestException
RequestFailure. getCause()
Return the failure cause.Methods in org.opendaylight.controller.cluster.access.concepts with parameters of type RequestException Modifier and Type Method Description protected abstract @NonNull C
AbstractRequestFailureProxy. createFailure(@NonNull T target, long sequence, @NonNull RequestException failureCause)
void
RequestEnvelope. sendFailure(RequestException cause, long executionTimeNanos)
Respond to this envelope with aRequestFailure
caused by specifiedRequestException
.abstract @NonNull RequestFailure<T,?>
Request. toRequestFailure(@NonNull RequestException cause)
Return aRequestFailure
for this request, caused by aRequestException
.Constructors in org.opendaylight.controller.cluster.access.concepts with parameters of type RequestException Constructor Description RequestFailure(@NonNull T target, long sequence, @NonNull RequestException cause)
-