blob: 1b58f3e4083132558e144ad0ce7f3cfc018a5f12 [file] [log] [blame]
package org.onlab.onos.net.packet;
/**
* Entity capable of processing inbound packets.
*/
public interface PacketProviderService {
/**
* Submits inbound packet context for processing. This processing will be
* done synchronously, i.e. run-to-completion.
*
* @param context inbound packet context
*/
void processPacket(PacketContext context);
}