blob: a53a08c3e3f3d4037840a341146fd475489f5f38 [file] [log] [blame]
tom613d8142014-09-11 15:09:37 -07001package org.onlab.onos.net.packet;
2
3/**
4 * Abstraction of an inbound packet processor.
5 */
6public interface PacketProcessor {
7
8 /**
9 * Processes the inbound packet as specified in the given context.
10 *
11 * @param context packet processing context
12 */
13 void process(PacketContext context);
14
15}