Bug 1484 - StatisticManager performance improvement refactoring
[controller.git] / opendaylight / md-sal / statistics-manager / src / main / java / org / opendaylight / controller / md / statistics / manager / StatListeningCommiter.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
9 package org.opendaylight.controller.md.statistics.manager;
10
11 import org.opendaylight.controller.md.sal.binding.api.DataChangeListener;
12 import org.opendaylight.yangtools.yang.binding.DataObject;
13 import org.opendaylight.yangtools.yang.binding.NotificationListener;
14
15 /**
16  * statistics-manager
17  * org.opendaylight.controller.md.statistics.manager
18  *
19  * StatListeningCommiter
20  * Definition Interface for {@link DataChangeListener} implementer class rule.
21  * Interface represent a contract between Config/DataStore changes and
22  * Operational/DataStore commits. All Operational/DataStore commit have
23  * to by represent as RPC Device response Notification processing. So
24  * Operational/DS could contains only real mirror of OF Device
25  *
26  * @author <a href="mailto:vdemcak@cisco.com">Vaclav Demcak</a>
27  *
28  * Created: Aug 27, 2014
29  */
30 public interface StatListeningCommiter<T extends DataObject, N extends NotificationListener> extends DataChangeListener, StatNotifyCommiter<N> {
31
32
33 }
34