a5adc6e7450a769c39fdf2045f514d9055e8f5eb
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / BGPUpdateSynchronized.java
1 /*
2  * Copyright (c) 2013 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 package org.opendaylight.protocol.bgp.parser;
9
10 import org.opendaylight.protocol.bgp.concepts.BGPTableType;
11
12 /**
13  * Update event indicating that a RIB has reached initial synchronization. An instance of this interface is generated
14  * when the BGP UPDATE parser encounters such a marker message.
15  */
16 public interface BGPUpdateSynchronized extends BGPUpdateEvent {
17         /**
18          * Identify which RIB has reached synchronization.
19          * 
20          * @return BGP table type
21          */
22         public BGPTableType getTableType();
23 }