/*
* Copyright 2008-present 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.management;
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.
Since: 2.12
/**
* <p>A standard MXBean interface for a Mongo connection pool, for use on Java 6 and above virtual machines.</p>
*
* <p>This interface is NOT part of the public API. Be prepared for non-binary compatible changes in minor releases.</p>
*
* @since 2.12
*/
public interface ConnectionPoolStatisticsMBean {
Gets the host that this connection pool is connecting to.
Returns: the host
/**
* 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.
Returns: the port
/**
* Gets the port that this connection pool is connecting to.
*
* @return the port
*/
int getPort();
Gets the minimum allowed size of the pool, including idle and in-use members.
Returns: the minimum size
/**
* Gets the minimum allowed size of the pool, including idle and in-use members.
*
* @return the minimum size
*/
int getMinSize();
Gets the maximum allowed size of the pool, including idle and in-use members.
Returns: the maximum size
/**
* Gets the maximum allowed size of the pool, including idle and in-use members.
*
* @return the maximum size
*/
int getMaxSize();
Gets the current size of the pool, including idle and and in-use members.
Returns: the size
/**
* Gets the current size of the pool, including idle and and in-use members.
*
* @return the size
*/
int getSize();
Gets the count of connections that are currently in use.
Returns: count of in-use connections
/**
* Gets the count of connections that are currently in use.
*
* @return count of in-use connections
*/
int getCheckedOutCount();
Gets the size of the wait queue for a connection from this pool. *
Returns: size of the wait queue Deprecated: In the next major release, wait queue events will no longer be published so this statistic will be unavailable
/**
* Gets the size of the wait queue for a connection from this pool. *
*
* @return size of the wait queue
* @deprecated In the next major release, wait queue events will no longer be published so this statistic will be unavailable
*/
@Deprecated
int getWaitQueueSize();
}