blob: c7b04653561204f54572ecf14fae4a6dd4f26c13 [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
tomca55e642014-09-24 18:28:38 -070011 /**
12 * Notifies the delegate via the specified event.
13 *
14 * @param event store generated event
15 */
tom0755a362014-09-24 11:54:43 -070016 void notify(E event);
17
18}