blob: 0e708673eb800911f9bdf6a9696cbd3d75b62d1e [file] [log] [blame]
Toshio Koideb8cea262014-08-12 18:45:46 -07001package net.onrc.onos.api.flowmanager;
2
3/**
4 * An interface to the FlowManager's listener.
5 */
6public interface FlowManagerListener {
7 /**
8 * Handles flow state changes.
9 *
10 * @param event the state changes of the flow objects
11 */
12 public void flowStatesChanged(FlowStatesChangedEvent event);
13
14 /**
15 * Handles flow batch operation's state changes.
16 *
17 * @param event the state changes of the flow batch operations
18 */
19 public void flowBatchStateChanged(FlowBatchStateChangedEvent event);
20}