blob: 20ad68167743d1a730cc70b5e1b376ec9bb0befb [file] [log] [blame]
Brian O'Connordee2e6b2014-08-12 11:34:51 -07001package net.onrc.onos.core.matchaction;
2
3import java.util.EventListener;
4
5/**
6 * The listener for MatchActionEvents and MatchActionOperationsEvents.
7 * <p>
8 * Callers of the MatchActionService should implement both types of listeners to
9 * receive updates to asynchronous calls.
10 */
11public interface MatchActionListener extends EventListener {
12
13 /**
14 * Processes the MatchActionOperationsEvent.
15 *
16 * @param event the event
17 */
18 public void opertaionsUpdated(MatchActionOperationsEvent event);
19
20 /**
21 * Processes the MatchActionEvent.
22 *
23 * @param event the event
24 */
25 public void matchActionUpdated(MatchActionEvent event);
26}