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