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 classRequestTimeoutException - 
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 classClosedTransactionExceptionARequestExceptionindicating 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().classDeadHistoryExceptionARequestExceptionindicating that the backend has received a request to create a history which has already been retired.classDeadTransactionExceptionARequestExceptionindicating that the backend has received a request to create a transaction which has already been purged.classNotLeaderExceptionGeneral error raised when the recipient of a Request is not the correct backend to talk to.classOutOfOrderRequestExceptionARequestExceptionindicating that the backend has received a Request whose sequence does not match the next expected sequence for the target.classOutOfSequenceEnvelopeExceptionARequestExceptionindicating that the backend has received a RequestEnvelope whose sequence does not match the next expected sequence.classUnknownHistoryExceptionARequestExceptionindicating 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 ConnectClientFailureConnectClientRequest. toRequestFailure(RequestException cause)LocalHistoryFailureLocalHistoryRequest. toRequestFailure(RequestException cause)TransactionFailureTransactionRequest. 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 classRetiredGenerationExceptionGeneral error raised when the recipient of aRequestdetermines that the request contains aClientIdentifierwhich corresponds to an outdated generation.classRuntimeRequestExceptionGeneral error raised when the recipient of aRequestfails to process a request.classUnsupportedRequestExceptionGeneral error raised when the recipient of aRequestdetermines 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 RequestExceptionRequestFailure. 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 CAbstractRequestFailureProxy. createFailure(@NonNull T target, long sequence, @NonNull RequestException failureCause)voidRequestEnvelope. sendFailure(RequestException cause, long executionTimeNanos)Respond to this envelope with aRequestFailurecaused by specifiedRequestException.abstract @NonNull RequestFailure<T,?>Request. toRequestFailure(@NonNull RequestException cause)Return aRequestFailurefor 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) 
 -