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