use of org.opendaylight.openflowplugin.api.openflow.statistics.StatisticsContext in project openflowplugin by opendaylight.
the class StatisticsManagerImpl method close.
@Override
public void close() {
isStatisticsFullyDisabled = true;
controlServiceRegistration.close();
for (StatisticsContext context : contexts.values()) {
context.close();
}
contexts.clear();
}
Aggregations