blob: 6bd39b8ede8aba8d95b6d0e0c7f13a74afb8d2fc [file] [log] [blame]
alshabib54ebd9c2014-08-27 18:38:41 -07001package org.onlab.onos.of.controller;
2
3/**
4 * Notifies providers about Packet in events.
5 */
6public interface PacketListener {
7
8 /**
tom30a82712014-09-03 12:02:35 -07009 * Handles the packet.
10 *
11 * @param pktCtx the packet context
alshabib54ebd9c2014-08-27 18:38:41 -070012 */
alshabibe7031562014-09-12 18:17:37 -070013 public void handlePacket(OpenFlowPacketContext pktCtx);
alshabib54ebd9c2014-08-27 18:38:41 -070014}