blob: 534b10c9231a62661dd0c91e839d029ef1af04c5 [file] [log] [blame]
alshabiba43aa252014-10-21 21:36:41 -07001package org.onlab.onos.net.statistic;
2
3/**
4 * Simple data repository for link load information.
5 */
6public interface Load {
7
8 /**
9 * Obtain the current observed rate on a link.
10 * @return long value
11 */
12 long rate();
13
14 /**
15 * Obtain the latest counter viewed on that link.
16 * @return long value
17 */
18 long latest();
19
20}