blob: 8eaef1e9eebfc448e7cc6e395712ec4ef8c83064 [file] [log] [blame]
Madan Jampani890bc352014-10-01 22:35:29 -07001package org.onlab.onos.store.messaging;
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}