blob: 7bd5a7f47fbf1843b222058566acca47b730eaca [file] [log] [blame]
Madan Jampanic9ed9be2014-10-02 16:13:11 -07001package org.onlab.netty;
Madan Jampani890bc352014-10-01 22:35:29 -07002
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}