com.mongodb.MongoConnectionPoolMXBean Maven / Gradle / Ivy
Show all versions of mongo-java-driver Show documentation
/*
* Copyright (c) 2008-2014 MongoDB, Inc.
*
* 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.mongodb;
import com.mongodb.util.ConnectionPoolStatisticsBean;
/**
* A standard MXBean interface for a Mongo connection pool, for use on Java 6 and above virtual machines.
*
* This interface is NOT part of the public API. Be prepared for non-binary compatible changes in minor releases.
*
* @deprecated This class will be removed in 3.x versions of the driver,
* so please remove it from your compile time dependencies.
*/
@Deprecated
public interface MongoConnectionPoolMXBean {
/**
* Gets the name of the pool.
*
* @return the name of the pool
*/
String getName();
/**
* Gets the maximum allowed size of the pool, including idle and in-use members.
*
* @return the maximum size
*/
int getMaxSize();
/**
* Gets the host that this connection pool is connecting to.
*
* @return the host
*/
String getHost();
/**
* Gets the port that this connection pool is connecting to.
*
* @return the port
*/
int getPort();
/**
* Gets the statistics for this connection pool.
*
* @return the connection pool statistics
*/
ConnectionPoolStatisticsBean getStatistics();
}