Performacne improvements via adding a netty-based openflowj and openflow plugin;...
[controller.git] / third-party / openflowj_netty / src / main / java / org / openflow / util / IProducer.java
diff --git a/third-party/openflowj_netty/src/main/java/org/openflow/util/IProducer.java b/third-party/openflowj_netty/src/main/java/org/openflow/util/IProducer.java
new file mode 100644 (file)
index 0000000..52ae79a
--- /dev/null
@@ -0,0 +1,9 @@
+package org.openflow.util;
+
+public interface IProducer {
+
+    public void registerConsumer(Class<?> iface, Object anObj);
+
+    public void deregisterConsumer(Class<?> iface, Object anObj);
+
+}