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
1 package org.openflow.util;
2
3 public interface IProducer {
4
5     public void registerConsumer(Class<?> iface, Object anObj);
6
7     public void deregisterConsumer(Class<?> iface, Object anObj);
8
9 }