blob: db42ba74bc0ef7b41778a8f1a90974875e44bb79 [file] [log] [blame]
alshabibbc371962015-07-09 22:26:21 -07001/*
2 * Copyright 2015 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 */
16package org.onosproject.net.meter;
17
18/**
19 * Represents a band used within a meter.
20 */
21public interface Band {
22
23 /**
24 * Specifies the type of band.
25 */
26 enum Type {
27 /**
28 * Simple rate limiter which drops packets
29 * when the rate is exceeded.
30 */
31 DROP,
32
33 /**
34 * defines a simple DiffServ policer that remark
alshabibc7911792015-07-30 17:55:30 -070035 * the drop precedence of the DSCP field in the
alshabibbc371962015-07-09 22:26:21 -070036 * IP header of the packets that exceed the band
37 * rate value.
38 */
39 REMARK
40 }
41
42 /**
43 * The rate at which this meter applies.
44 *
alshabibc7911792015-07-30 17:55:30 -070045 * @return the long value of the rate
alshabibbc371962015-07-09 22:26:21 -070046 */
alshabibc7911792015-07-30 17:55:30 -070047 long rate();
alshabibbc371962015-07-09 22:26:21 -070048
49 /**
50 * The burst size at which the meter applies.
51 *
alshabibc7911792015-07-30 17:55:30 -070052 * @return the long value of the size
alshabibbc371962015-07-09 22:26:21 -070053 */
alshabibc7911792015-07-30 17:55:30 -070054 long burst();
55
56 /**
57 * Only meaningful in the case of a REMARK band type.
58 * indicates by which amount the drop precedence of
59 * the packet should be increase if the band is exceeded.
60 *
61 * @return a short value
62 */
63 short dropPrecedence();
64
65 /**
66 * Signals the type of band to create.
67 *
68 * @return a band type
69 */
70 Type type();
alshabibbc371962015-07-09 22:26:21 -070071
72
73}