
org.rx.jdbc.ConnectionPoolMXBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib-x Show documentation
Show all versions of rxlib-x Show documentation
A set of utilities for Java
The newest version!
package org.rx.jdbc;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
@NoArgsConstructor
@AllArgsConstructor
@Data
public class ConnectionPoolMXBean implements Serializable {
private static final long serialVersionUID = -8774671998907063174L;
private String name;
private int idleConnections;
private int activeConnections;
private int totalConnections;
private int threadsAwaitingConnection;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy