blob: 2c42d2bd559023be3b693928d48c16cdaaa9875e [file] [log] [blame]
Thomas Vachuskaa394b952016-06-14 15:02:09 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Thomas Vachuskaa394b952016-06-14 15:02:09 -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 */
16
17package org.onosproject.provider.of.flow.impl;
18
19/**
20 * Auxiliary abstraction.
21 */
22interface SwitchDataCollector {
23
24 /**
25 * Starts the collector.
26 */
27 void start();
28
29 /**
30 * Stops the collector.
31 */
32 void stop();
Jordan Haltermandf4b08a2019-03-05 18:44:03 -080033
34 /**
35 * Signals reply has been received.
36 */
37 default void received() {
38
39 }
40
41 /**
42 * Records the number of events seen.
43 *
44 * @param events number of events
45 */
46 default void recordEvents(int events) {
47
48 }
49
50 /**
51 * Resets the number of events seen.
52 */
53 default void resetEvents() {
54
55 }
Thomas Vachuskaa394b952016-06-14 15:02:09 -070056}