com.alibaba.druid.pool.DruidDataSourceMBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid Show documentation
Show all versions of druid Show documentation
An JDBC datasource implementation.
/*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alibaba.druid.pool;
import javax.management.ObjectName;
import java.sql.SQLException;
import java.util.Date;
/**
* @author wenshao [[email protected]]
*/
public interface DruidDataSourceMBean extends DruidAbstractDataSourceMBean {
long getResetCount();
boolean isEnable();
String getUrl();
void shrink();
int removeAbandoned();
String dump();
int getWaitThreadCount();
int getLockQueueLength();
long getNotEmptyWaitCount();
int getNotEmptyWaitThreadCount();
long getNotEmptySignalCount();
long getNotEmptyWaitMillis();
long getNotEmptyWaitNanos();
void resetStat();
boolean isResetStatEnable();
void setResetStatEnable(boolean resetStatEnable);
String getVersion();
void setPoolPreparedStatements(boolean poolPreparedStatements);
int getActivePeak();
int getPoolingPeak();
Date getActivePeakTime();
Date getPoolingPeakTime();
long getErrorCount();
ObjectName getObjectName();
void clearStatementCache() throws SQLException;
long getDiscardCount();
void setStatLoggerClassName(String className);
long getTimeBetweenLogStatsMillis();
void setTimeBetweenLogStatsMillis(long timeBetweenLogStatsMillis);
void setConnectionProperties(String connectionProperties);
int fill() throws SQLException;
int fill(int toCount) throws SQLException;
boolean isUseGlobalDataSourceStat();
}