Deprecate old MD-SAL APIs for removal
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / routing / RouteChangeListener.java
1 /*
2  * Copyright (c) 2014 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.controller.md.sal.common.api.routing;
9
10 import java.util.EventListener;
11
12 /**
13  * Listener which is interested in receiving RouteChangeEvents for its local broker.
14  *
15  * <p>
16  * Listener is registered via {@link RouteChangePublisher#registerRouteChangeListener(RouteChangeListener)}
17  *
18  * @param <C> Type, which is used to represent Routing context.
19  * @param <P> Type of data tree path, which is used to identify route.
20  */
21 @Deprecated(forRemoval = true)
22 public interface RouteChangeListener<C, P> extends EventListener {
23
24     /**
25      * Callback which is invoked if there is an rpc routing table change.
26      *
27      * @param change Event representing change in local RPC routing table.
28      */
29     void onRouteChange(RouteChange<C, P> change);
30 }