blob: c9ffea100efe0574c85823ebf73e6424a8fa377b [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 DistributedSet.
5 */
6public interface SetEventListener<E> {
7 /**
8 * Reacts to the specified event.
9 *
10 * @param event the event
11 */
12 void event(SetEvent<E> event);
13}