40dc30eb0ebcc25f78164408730803b1230ffbe7
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / broker / impl / jmx / CommitStatsMXBean.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.controller.md.sal.dom.broker.impl.jmx;
10
11 /**
12  * MXBean interface for retrieving write Tx commit statistics.
13  *
14  * @author Thomas Pantelis
15  */
16 public interface CommitStatsMXBean {
17
18     /**
19      * Returns the total number of commits that have occurred.
20      */
21     long getTotalCommits();
22
23     /**
24      * Returns a string representing the time duration of the longest commit, in the appropriate
25      * scaled units, along with the date/time that it occurred.
26      */
27     String getLongestCommitTime();
28
29     /**
30      * Returns a string representing the time duration of the shortest commit, in the appropriate
31      * scaled units, along with the date/time that it occurred.
32      */
33     String getShortestCommitTime();
34
35     /**
36      * Returns a string representing average commit time duration, in the appropriate
37      * scaled units.
38      */
39     String getAverageCommitTime();
40
41     /**
42      * Clears the current stats to their defaults.
43      */
44     void clearStats();
45 }