Bug 1764 - created new bundle responsible for default OF switch configuration
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / queue / Enqueuer.java
1 /**
2  * Copyright (c) 2013 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.openflowplugin.openflow.md.queue;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
11
12 /**
13  * @param <IN> type of queue items 
14  */
15 public interface Enqueuer<IN> {
16     
17     /**
18      * @param queueItem item to be enqueued
19      */
20     void enqueueQueueItem(IN queueItem);
21
22     /**
23      * @param queueItem
24      * @deprecated for testing and comparing purposes - this strategy blocks netty threads
25      */
26     @Deprecated
27     void directProcessQueueItem(QueueItem<OfHeader> queueItem);
28 }