blob: 3fbacc7158ca3d32b345e427d877c950712381bb [file] [log] [blame]
alshabibeec3a062014-09-17 18:01:26 -07001package org.onlab.onos.openflow.controller;
2
3import org.projectfloodlight.openflow.protocol.OFMessage;
4
5
6/**
7 * Notifies providers about openflow msg events.
8 */
9public interface OpenFlowEventListener {
10
11 /**
12 * Handles the message event.
13 *
14 * @param msg the message
15 */
16 public void handleMessage(Dpid dpid, OFMessage msg);
17}