2d800c3d96c88bc70c310c83fb2036ea3d834776
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / jmx / mbeans / DatastoreConfigurationMXBean.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.cluster.datastore.jmx.mbeans;
9
10
11 /**
12  * MXBean interface for data store configuration.
13  *
14  * @author Thomas Pantelis
15  */
16 public interface DatastoreConfigurationMXBean {
17     long getShardTransactionIdleTimeoutInSeconds();
18
19     long getOperationTimeoutInSeconds();
20
21     long getShardHeartbeatIntervalInMillis();
22
23     int getShardJournalRecoveryLogBatchSize();
24
25     long getShardIsolatedLeaderCheckIntervalInMillis();
26
27     long getShardElectionTimeoutFactor();
28
29     int getShardSnapshotDataThresholdPercentage();
30
31     int getShardSnapshotDataThreshold();
32
33     long getShardSnapshotBatchCount();
34
35     long getShardTransactionCommitTimeoutInSeconds();
36
37     int getShardTransactionCommitQueueCapacity();
38
39     long getShardCommitQueueExpiryTimeoutInSeconds();
40
41     long getShardInitializationTimeoutInSeconds();
42
43     long getShardLeaderElectionTimeoutInSeconds();
44
45     boolean isPersistent();
46
47     long getTransactionCreationInitialRateLimit();
48
49     boolean getTransactionContextDebugEnabled();
50
51     @Deprecated(forRemoval = true)
52     int getMaxShardDataChangeExecutorPoolSize();
53
54     @Deprecated(forRemoval = true)
55     int getMaxShardDataChangeExecutorQueueSize();
56
57     @Deprecated(forRemoval = true)
58     int getMaxShardDataChangeListenerQueueSize();
59
60     @Deprecated(forRemoval = true)
61     int getMaxShardDataStoreExecutorQueueSize();
62
63     int getMaximumMessageSliceSize();
64 }