blob: 3f785ee3205426a815b127e2aee2fa5b01906945 [file] [log] [blame]
Pavlin Radoslavov7940b652014-02-13 19:42:05 -08001package net.onrc.onos.datagrid;
2
3/**
4 * Event Channel Listener Interface.
5 */
6public interface IEventChannelListener<K, V> {
7 /**
8 * Receive a notification that an entry is added.
9 *
10 * @param value the value for the entry.
11 */
12 void entryAdded(V value);
13
14 /**
15 * Receive a notification that an entry is removed.
16 *
17 * @param value the value for the entry.
18 */
19 void entryRemoved(V value);
20
21 /**
22 * Receive a notification that an entry is updated.
23 *
24 * @param value the value for the entry.
25 */
26 void entryUpdated(V value);
27}