/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.access.client; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * An {@link AbstractClientConnection} which is being reconnected after having timed out. * * @author Robert Varga * * @param {@link BackendInfo} type */ public final class ReconnectingClientConnection extends AbstractReceivingClientConnection { private static final Logger LOG = LoggerFactory.getLogger(ReconnectingClientConnection.class); ReconnectingClientConnection(final ConnectedClientConnection oldConnection) { super(oldConnection); } @Override ClientActorBehavior reconnectConnection(final ClientActorBehavior current) { // Intentional no-op LOG.debug("Skipping reconnect of already-reconnecting connection {}", this); return current; } }