blob: 06c43d68d27f862992479e9176c4425159c9882f [file] [log] [blame]
tom9c94c5b2014-09-17 13:14:42 -07001package org.onlab.onos.openflow.controller;
tom7ef8ff92014-09-17 13:08:06 -07002
3/**
4 * Notifies providers about Packet in events.
5 */
6public interface PacketListener {
7
8 /**
9 * Handles the packet.
10 *
11 * @param pktCtx the packet context
12 */
13 public void handlePacket(OpenFlowPacketContext pktCtx);
14}