blob: 6422cb399b3c509be3f18c64f1ab98832fb3cec3 [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.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080025 *
alshabiba43aa252014-10-21 21:36:41 -070026 * @return long value
27 */
28 long rate();
29
30 /**
alshabib3d643ec2014-10-22 18:33:00 -070031 * Obtain the latest bytes counter viewed on that link.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080032 *
alshabiba43aa252014-10-21 21:36:41 -070033 * @return long value
34 */
35 long latest();
36
alshabib3d643ec2014-10-22 18:33:00 -070037 /**
38 * Indicates whether this load was built on valid values.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080039 *
alshabib3d643ec2014-10-22 18:33:00 -070040 * @return boolean
41 */
42 boolean isValid();
43
44 /**
45 * Returns when this value was seen.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080046 *
alshabib3d643ec2014-10-22 18:33:00 -070047 * @return epoch time
48 */
49 long time();
50
alshabiba43aa252014-10-21 21:36:41 -070051}