blob: bcca1fd9da35a319c238858697cabff93a4c2dde [file] [log] [blame]
Andreas Wundsam27303462013-07-16 12:52:35 -07001package org.openflow.protocol;
2
3import org.jboss.netty.buffer.ChannelBuffer;
4import org.openflow.exceptions.OFParseError;
5
6public interface OFMessageWriter<T> {
Andreas Wundsama94273b2013-08-01 22:11:33 -07007 public void write(ChannelBuffer bb, T message) throws OFParseError;
Andreas Wundsam27303462013-07-16 12:52:35 -07008}