blob: 8fd3c688517dba47a308053ea3e6067deb013d7b [file] [log] [blame]
Satish Ke107e662015-09-21 19:00:17 +05301/*
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 */
16
17package org.onosproject.bgp.controller;
18
19/**
20 * A representation of a packet context which allows any provider to view a packet in event, but may block the response
21 * to the event if blocked has been called. This packet context can be used to react to the packet in event with a
22 * packet out.
23 */
Shashikanth VH5dd8dbe2015-11-26 13:22:18 +053024public interface BgpPacketStats {
Satish Ke107e662015-09-21 19:00:17 +053025 /**
26 * Returns the count for no of packets sent out.
27 *
28 * @return int value of no of packets sent
29 */
30 int outPacketCount();
31
32 /**
33 * Returns the count for no of packets received.
34 *
35 * @return int value of no of packets sent
36 */
37 int inPacketCount();
38
39 /**
40 * Returns the count for no of wrong packets received.
41 *
42 * @return int value of no of wrong packets received
43 */
44 int wrongPacketCount();
45
46 /**
47 * Returns the time.
48 *
49 * @return the time
50 */
51 long getTime();
52}