dev.jfr4jdbc.JfrConnection 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.JfrConnection42;
import java.sql.Connection;
public class JfrConnection extends JfrConnection42 implements Connection{
public JfrConnection(Connection con) {
super(con);
}
public JfrConnection(Connection con, String label) {
super(con, label);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy