blob: 41b4cf98d89573733814e5cc4c3f99cb47e8740f [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
alshabiba43aa252014-10-21 21:36:41 -070016package org.onlab.onos.net.statistic;
17
18/**
19 * Simple data repository for link load information.
20 */
21public interface Load {
22
23 /**
alshabib3d643ec2014-10-22 18:33:00 -070024 * Obtain the current observed rate (in bytes/s) on a link.
alshabiba43aa252014-10-21 21:36:41 -070025 * @return long value
26 */
27 long rate();
28
29 /**
alshabib3d643ec2014-10-22 18:33:00 -070030 * Obtain the latest bytes counter viewed on that link.
alshabiba43aa252014-10-21 21:36:41 -070031 * @return long value
32 */
33 long latest();
34
alshabib3d643ec2014-10-22 18:33:00 -070035 /**
36 * Indicates whether this load was built on valid values.
37 * @return boolean
38 */
39 boolean isValid();
40
41 /**
42 * Returns when this value was seen.
43 * @return epoch time
44 */
45 long time();
46
alshabiba43aa252014-10-21 21:36:41 -070047}