MessageHandler.java 289 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package org.onlab.netty; import java.io.IOException; /** * Handler for a message. */ public interface MessageHandler { /** * Handles the message. * @param message message. * @throws IOException. */ public void handle(Message message) throws IOException; }