bug 2446 - High priority (control) queue stop reading from channel if is full
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / queue / WaterMarkListener.java
1 package org.opendaylight.openflowplugin.api.openflow.md.queue;
2
3 public interface WaterMarkListener {
4
5     /**
6      * When HighWaterMark reached and currently not flooded
7      */
8     void onHighWaterMark();
9
10     /**
11      * When LowWaterMark reached and currently flooded
12      */
13     void onLowWaterMark();
14 }