ISSUE
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / IStatisticsListener.java
1 package org.opendaylight.controller.protocol_plugin.openflow;
2
3 import org.openflow.protocol.statistics.OFDescriptionStatistics;
4
5 /**
6  * Interface which defines the api which gets called when the information
7  * contained in the OF description statistics reply message from a network
8  * is updated with new one.
9  */
10 public interface IStatisticsListener {
11         public void descriptionRefreshed(Long switchId,
12                                         OFDescriptionStatistics description);
13 }