blob: c778ffce846de52f6935af6c1374712e557569c5 [file] [log] [blame]
Shravan Ambatibb6b4452016-05-04 13:25:28 -07001/**
Brian O'Connor0a4e6742016-09-15 23:03:10 -07002 * Copyright 2016-present Open Networking Laboratory
Shravan Ambatibb6b4452016-05-04 13:25:28 -07003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6
7 * http://www.apache.org/licenses/LICENSE-2.0
8
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15package org.onosproject.kafkaintegration.api;
16
17import org.onosproject.event.EventListener;
18import org.onosproject.kafkaintegration.api.dto.OnosEvent;
19
20import com.google.common.annotations.Beta;
21
22/**
23 * API for listeners to listen for Events generated by the ONOS event listener.
24 * At present the only listener will be a Kafka Manager or Module whose sole
25 * purpose is to publish the received data to a Kafka message bus.
26 *
27 */
28@Beta
29public interface ExportableEventListener extends EventListener<OnosEvent> {
30
31}