Package org.onosproject.net.packet
Interface PacketStoreDelegate
-
- All Superinterfaces:
StoreDelegate<PacketEvent>
public interface PacketStoreDelegate extends StoreDelegate<PacketEvent>
Packet store delegate abstraction.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancelPackets(PacketRequest request)
Requests that packets matching to following request no longer be collected from any switches.void
requestPackets(PacketRequest request)
Requests that packets matching to following request be collected from all switches.-
Methods inherited from interface org.onosproject.store.StoreDelegate
notify
-
-
-
-
Method Detail
-
requestPackets
void requestPackets(PacketRequest request)
Requests that packets matching to following request be collected from all switches.- Parameters:
request
- packet request
-
cancelPackets
void cancelPackets(PacketRequest request)
Requests that packets matching to following request no longer be collected from any switches.- Parameters:
request
- packet request
-
-