blob: e2c5cd34acdc3b65d12aaf5c951f39881ef31e00 [file] [log] [blame]
tom0755a362014-09-24 11:54:43 -07001package org.onlab.onos.store;
2
3import org.onlab.onos.event.Event;
4
5/**
6 * Entity associated with a store and capable of receiving notifications of
7 * events within the store.
8 */
9public interface StoreDelegate<E extends Event> {
10
11 void notify(E event);
12
13}