dev.jfr4jdbc.Jfr4JdbcDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfr4jdbc-driver Show documentation
Show all versions of jfr4jdbc-driver Show documentation
A JDBC wrapper driver recording JDK Flight Recorder events
package dev.jfr4jdbc;
import dev.jfr4jdbc.internal.Jfr4JdbcDataSource42;
import javax.sql.DataSource;
public class Jfr4JdbcDataSource extends Jfr4JdbcDataSource42 implements DataSource{
public Jfr4JdbcDataSource(DataSource datasource) {
super(datasource);
}
public Jfr4JdbcDataSource(DataSource datasource, String monitorLabel) {
super(datasource, monitorLabel);
}
public Jfr4JdbcDataSource(DataSource datasource, EventFactory factory) {
super(datasource, factory);
}
public Jfr4JdbcDataSource(DataSource datasource, EventFactory factory, String monitorLabel) {
super(datasource, factory, monitorLabel);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy