dev.jfr4jdbc.event.jfr.JfrCancelEvent 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.event.jfr;
import dev.jfr4jdbc.event.CancelEvent;
import jdk.jfr.Label;
@Label("Cancel")
public class JfrCancelEvent extends JfrJdbcEvent implements CancelEvent {
@Label("connectionId")
private int connectionId;
@Label("statementId")
private int statementId;
public void setConnectionId(int connectionId) {
this.connectionId = connectionId;
}
public void setStatementId(int statementId) {
this.statementId = statementId;
}
public int getConnectionId() {
return connectionId;
}
public int getStatementId() {
return statementId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy