BUG-3128: Update RPC router concepts
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / ClusteredDOMDataTreeChangeListener.java
1 /*
2  * Copyright (c) 2015 Brocade Communications 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.dom.api;
9
10 /**
11  *  ClusteredDOMDataTreeChangeListener is a marker interface to enable data tree change notifications on all
12  * instances in a cluster where this listener is registered.
13  * <p>
14  * Applications should implement ClusteredDOMDataTreeChangeListener instead of {@link DOMDataTreeChangeListener},
15  * if they want to listen for data tree change notifications on any node of a clustered data store.
16  * {@link DOMDataTreeChangeListener} enables notifications only at the leader of the data store.
17  *
18  * @author Thomas Pantelis
19  */
20 public interface ClusteredDOMDataTreeChangeListener extends DOMDataTreeChangeListener {
21
22 }