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