blob: d36e9a9b079cdb97a0f806255ef28e7b7af48e85 [file] [log] [blame]
Niraj Dubeya8287192021-03-23 19:54:17 +05301/*
2 * Copyright 2021-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.bgpmonitoring;
18
19/**
20 * Abstraction of an BMP controller. It handles BMP messages from BMP routers
21 */
22public interface BmpController {
23
24 /**
25 * Start listening bmp messages from bmp router.
26 */
27 void startListener();
28
29 /**
30 * Stop listening bmp messages from bmp router.
31 */
32 void closeListener();
33
34 /**
35 * Process bmp message and notify the appropriate listeners.
36 *
37 * @param message the message to process.
38 * @throws BmpParseException on data processing error
39 */
40 void processBmpPacket(BmpMessage message) throws BmpParseException;
41
42}