blob: bcca1fd9da35a319c238858697cabff93a4c2dde [file] [log] [blame]
package org.openflow.protocol;
import org.jboss.netty.buffer.ChannelBuffer;
import org.openflow.exceptions.OFParseError;
public interface OFMessageWriter<T> {
public void write(ChannelBuffer bb, T message) throws OFParseError;
}