Barrier turn on/off - no Barrier pipeline
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / connection / OutboundQueueManagerNoBarrier.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.openflowjava.protocol.impl.core.connection;
10
11 import java.net.InetSocketAddress;
12 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueueHandler;
13
14 /**
15  *
16  * @param <T>
17  */
18 public class OutboundQueueManagerNoBarrier<T extends OutboundQueueHandler> extends
19         AbstractOutboundQueueManager<T, StackedOutboundQueueNoBarrier> {
20
21     OutboundQueueManagerNoBarrier(final ConnectionAdapterImpl parent, final InetSocketAddress address, final T handler) {
22         super(parent, address, handler);
23     }
24
25     @Override
26     protected StackedOutboundQueueNoBarrier initializeStackedOutboudnqueue() {
27         return new StackedOutboundQueueNoBarrier(this);
28     }
29
30 }