sort by descending number of suspected transaction leaks in trace output
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / ClusteredDOMDataChangeListener.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.controller.md.sal.dom.api;
10
11 /**
12  * ClusteredDOMDataChangeListener is a marker interface to enable data change
13  * notifications on all instances in a cluster, where this listener is
14  * registered.
15  *
16  * <p>
17  * Applications should implement ClusteredDOMDataChangeListener instead of DOMDataChangeListener, if they want to
18  * listen to data change notifications on any node of clustered datastore. DOMDataChangeListener enables data change
19  * notifications only at leader of the datastore shard.
20  */
21 public interface ClusteredDOMDataChangeListener extends DOMDataChangeListener{
22 }