BUG-5280: implement backend message handling
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / OutOfOrderRequestException.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.commands;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.controller.cluster.access.concepts.RequestException;
12
13 /**
14  * A {@link RequestException} indicating that the backend has received an unexpected request. This would typically
15  * mean that messages are not arriving in the sequence they were generated by the frontend.
16  *
17  * @author Robert Varga
18  */
19 @Beta
20 public final class OutOfOrderRequestException extends RequestException {
21     private static final long serialVersionUID = 1L;
22
23     public OutOfOrderRequestException(final long expectedRequest) {
24         super("Expecting request " + Long.toUnsignedString(expectedRequest));
25     }
26
27     @Override
28     public boolean isRetriable() {
29         return true;
30     }
31 }