blob: 485bdc5b32aa26c0426b8aec2411a12dcbe0eb7c [file] [log] [blame]
package net.onrc.onos.core.matchaction;
/**
* A MatchAction-related event.
*
* The TODO entry removed by switch or preempted by another request.
*
*/
public interface MatchActionEvent {
/**
* TODO.
*
* @return Match Action ID (This is a WIP).
*/
public MatchActionId getId();
/**
* TODO.
*
* @return Match Action Status (This is a WIP).
*/
public MatchActionStatus getStatus();
/**
* Returns the time at which the event was created.
*
* @return the time in milliseconds since start of epoch
*/
long getTime();
}