public interface OpenFlowSwitchListener
| Modifier and Type | Method and Description |
|---|---|
void |
portChanged(Dpid dpid,
org.projectfloodlight.openflow.protocol.OFPortStatus status)
Notify that a port has changed.
|
void |
receivedRoleReply(Dpid dpid,
RoleState requested,
RoleState response)
Notify that a role imposed on a switch failed to take hold.
|
void |
switchAdded(Dpid dpid)
Notify that the switch was added.
|
void |
switchChanged(Dpid dpid)
Notify that the switch has changed in some way.
|
void |
switchRemoved(Dpid dpid)
Notify that the switch was removed.
|
void switchAdded(Dpid dpid)
dpid - the switch where the event occurredvoid switchRemoved(Dpid dpid)
dpid - the switch where the event occurred.void switchChanged(Dpid dpid)
dpid - the switch that changedvoid portChanged(Dpid dpid, org.projectfloodlight.openflow.protocol.OFPortStatus status)
dpid - the switch on which the change happened.status - the new state of the port.