blob: 86b3728a781f6bd1eb968f9402c2e8de48b7608d [file] [log] [blame]
Jonathan Hart7804bea2014-01-07 10:50:52 -08001package net.onrc.onos.ofcontroller.proxyarp;
2
3/**
4 * Classes may implement this interface if they wish to subscribe to
5 * packet out notifications from the datagrid service. Packet out notifications
6 * are used to direct other ONOS instances to send packets out particular
7 * ports under their control.
8 *
9 */
10public interface IPacketOutEventHandler {
11
12 /**
13 * Notify the packet out event handler that an packet out notification has
14 * been received.
15 * @param packetOutNotification An object describing the notification
16 */
17 public void packetOutNotification(PacketOutNotification packetOutNotification);
18}