blob: 7bd5a7f47fbf1843b222058566acca47b730eaca [file] [log] [blame]
Madan Jampaniab6d3112014-10-02 16:30:14 -07001package org.onlab.netty;
2
3import java.io.IOException;
4
5/**
6 * Handler for a message.
7 */
8public interface MessageHandler {
9
10 /**
11 * Handles the message.
12 * @param message message.
13 * @throws IOException.
14 */
15 public void handle(Message message) throws IOException;
16}