BUG-6647 Increase code coverage and clean up II
[bgpcep.git] / bgp / bmp-impl / src / main / java / org / opendaylight / protocol / bmp / impl / spi / BmpRouterPeer.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.protocol.bmp.impl.spi;
10
11 import org.opendaylight.yangtools.yang.binding.Notification;
12
13 /**
14  * Represent monitored router's peer. Is responsible of processing per-peer messages.
15  *
16  */
17 public interface BmpRouterPeer extends AutoCloseable {
18
19     /**
20      * Process peer-peer message that is related to this peer.
21      * @param message BMP Per-peer message.
22      */
23     void onPeerMessage(Notification message);
24
25 }