blob: 534b10c9231a62661dd0c91e839d029ef1af04c5 [file] [log] [blame]
package org.onlab.onos.net.statistic;
/**
* Simple data repository for link load information.
*/
public interface Load {
/**
* Obtain the current observed rate on a link.
* @return long value
*/
long rate();
/**
* Obtain the latest counter viewed on that link.
* @return long value
*/
long latest();
}