BUG-5280: fix InversibleLock race
[controller.git] / opendaylight / md-sal / cds-access-client / src / main / java / org / opendaylight / controller / cluster / access / client / ConnectingClientConnection.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.client;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Optional;
12
13 @Beta
14 public final class ConnectingClientConnection<T extends BackendInfo> extends AbstractClientConnection<T> {
15     // Initial state, never instantiated externally
16     ConnectingClientConnection(final ClientActorContext context, final Long cookie) {
17         super(context, cookie, new TransmitQueue.Halted());
18     }
19
20     @Override
21     public Optional<T> getBackendInfo() {
22         return Optional.empty();
23     }
24
25     @Override
26     ClientActorBehavior<T> reconnectConnection(final ClientActorBehavior<T> current) {
27         throw new UnsupportedOperationException("Attempted to reconnect a connecting connection");
28     }
29 }