blob: 8eaef1e9eebfc448e7cc6e395712ec4ef8c83064 [file] [log] [blame]
package org.onlab.onos.store.messaging;
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;
}