blob: ca18aa73db16b5d7fec0e782d07d0aa6fd28f6a6 [file] [log] [blame]
package net.onrc.onos.core.datagrid;
/**
* Event Channel Listener Interface.
*/
public interface IEventChannelListener<K, V> {
/**
* Receive a notification that an entry is added.
*
* @param value the value for the entry.
*/
void entryAdded(V value);
/**
* Receive a notification that an entry is removed.
*
* @param value the value for the entry.
*/
void entryRemoved(V value);
/**
* Receive a notification that an entry is updated.
*
* @param value the value for the entry.
*/
void entryUpdated(V value);
}