blob: 2856306f1f4568b4215496e6d0dbb9f3fbc2763d [file] [log] [blame]
Madan Jampani50589ac2015-06-08 11:38:46 -07001package org.onosproject.store.service;
2
3/**
4 * Listener to be notified about updates to a ConsitentMap.
5 */
6public interface MapEventListener<K, V> {
7 /**
8 * Reacts to the specified event.
9 *
10 * @param event the event
11 */
12 void event(MapEvent<K, V> event);
13}