blob: bec56343fcc4af4e7dfbf224f3462c7e833bd55b [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001package org.projectfloodlight.openflow.protocol;
2
3import org.jboss.netty.buffer.ChannelBuffer;
4import org.projectfloodlight.openflow.exceptions.OFParseError;
5
6public interface OFMessageWriter<T> {
7 public void write(ChannelBuffer bb, T message) throws OFParseError;
8}