52ae79a52b5dc47af63f71d0aceeb3ee26105727
[openflowjava.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 }