blob: e2c5cd34acdc3b65d12aaf5c951f39881ef31e00 [file] [log] [blame]
package org.onlab.onos.store;
import org.onlab.onos.event.Event;
/**
* Entity associated with a store and capable of receiving notifications of
* events within the store.
*/
public interface StoreDelegate<E extends Event> {
void notify(E event);
}