blob: 1b58f3e4083132558e144ad0ce7f3cfc018a5f12 [file] [log] [blame]
tom613d8142014-09-11 15:09:37 -07001package org.onlab.onos.net.packet;
2
3/**
4 * Entity capable of processing inbound packets.
5 */
6public interface PacketProviderService {
7
8 /**
9 * Submits inbound packet context for processing. This processing will be
10 * done synchronously, i.e. run-to-completion.
11 *
12 * @param context inbound packet context
13 */
14 void processPacket(PacketContext context);
15
16}