blob: 84e550760c88b68683bdedfa6de1000eeb7c1f71 [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> {
7 public int write(ChannelBuffer bb, T message) throws OFParseError;
8}