blob: 0da02fc8924a7f79049c14a523fcc901e6f7ada9 [file] [log] [blame]
FrankWang2674e452018-05-24 17:13:35 +08001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16
17package org.onosproject.net.pi.model;
18
19import com.google.common.annotations.Beta;
20
21/**
22 * Model of a register in a protocol-independent pipeline.
23 */
24@Beta
25public interface PiRegisterModel {
26
27 /**
28 * Returns the ID of this register.
29 *
30 * @return register ID
31 */
32 PiRegisterId id();
33
34 /**
35 * Returns the number of cells of this register.
36 *
37 * @return size
38 */
39 long size();
40}
41