X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fprotocol_plugins%2Fopenflow%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotocol_plugin%2Fopenflow%2FIReadFilterInternalListener.java;h=9622af97ef3fa66e5b376b4640894978b926aae4;hb=d0853adc639de247a097f19868cce0ccaf7c2453;hp=d5f4d31f2bfd0e8ec88867efbae8b0e01c9e9e82;hpb=eed57e2b0afd50823bc882123b6cbac04bcc48d9;p=controller.git diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java index d5f4d31f2b..9622af97ef 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java @@ -9,38 +9,45 @@ import org.opendaylight.controller.sal.reader.NodeDescription; import org.opendaylight.controller.sal.reader.NodeTableStatistics; /** - * The Interface provides statistics updates to ReaderFilter listeners within - * the protocol plugin + * The Interface provides notification of statistics (hardware view) updates to + * ReaderFilter listeners within the protocol plugin */ public interface IReadFilterInternalListener { /** - * Notifies the hardware view of all the flow installed on the specified network node + * Notifies the hardware view of all the flow installed on the specified + * network node was updated + * * @param node - * @return + * the network node + * @param flowStatsList */ public void nodeFlowStatisticsUpdated(Node node, List flowStatsList); /** - * Notifies the hardware view of the specified network node connector + * Notifies the hardware view of the specified network node connectors was + * updated + * * @param node - * @return + * the network node */ public void nodeConnectorStatisticsUpdated(Node node, List ncStatsList); /** - * Notifies all the table statistics for a node + * Notifies the hardware view of the specified network node tables was + * updated + * * @param node - * @return + * the network node */ public void nodeTableStatisticsUpdated(Node node, List tableStatsList); /** - * Notifies the hardware view of all the flow installed on the specified network node + * Notifies the hardware view of all the flow installed on the specified + * network node was updated + * * @param node - * @return + * the network node */ public void nodeDescriptionStatisticsUpdated(Node node, NodeDescription nodeDescription); - - }