blob: 9f153c80a050ff2764d4910c719d52cda68010d4 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.statistic;
alshabiba43aa252014-10-21 21:36:41 -070017
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}