Interface NodeConnectorEventsObserver

All Known Implementing Classes:
LLDPSpeaker

public interface NodeConnectorEventsObserver
An observer of NodeConnectors changing their logical state.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onNodeConnectorDown(@NonNull org.opendaylight.yangtools.binding.DataObjectIdentifier.WithKey<NodeConnector,NodeConnectorKey> nodeConnectorInstanceId)
    This method is called when some node connector is removed from inventory or when existing node connector changed its status to DOWN.
    void
    onNodeConnectorUp(@NonNull org.opendaylight.yangtools.binding.DataObjectIdentifier.WithKey<NodeConnector,NodeConnectorKey> nodeConnectorInstanceId, @NonNull FlowCapableNodeConnector flowConnector)
    This method is called when new node connector is added to inventory or when existing node connector changed its status to UP.
  • Method Details

    • onNodeConnectorUp

      void onNodeConnectorUp(@NonNull org.opendaylight.yangtools.binding.DataObjectIdentifier.WithKey<NodeConnector,NodeConnectorKey> nodeConnectorInstanceId, @NonNull FlowCapableNodeConnector flowConnector)
      This method is called when new node connector is added to inventory or when existing node connector changed its status to UP.
      Parameters:
      nodeConnectorInstanceId - Object that uniquely identify added node connector
      flowConnector - object containing almost all of details about node connector
    • onNodeConnectorDown

      void onNodeConnectorDown(@NonNull org.opendaylight.yangtools.binding.DataObjectIdentifier.WithKey<NodeConnector,NodeConnectorKey> nodeConnectorInstanceId)
      This method is called when some node connector is removed from inventory or when existing node connector changed its status to DOWN.
      Parameters:
      nodeConnectorInstanceId - Object that uniquely identify added node connector