All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.jfr4jdbc.event.jfr.JfrRollbackEvent Maven / Gradle / Ivy

There is a newer version: 2.0.0-M3
Show newest version
package dev.jfr4jdbc.event.jfr;

import dev.jfr4jdbc.event.RollbackEvent;
import jdk.jfr.Label;

@Label("Rollback")
public class JfrRollbackEvent extends JfrJdbcEvent implements RollbackEvent {

    @Label("connectionId")
    private int connectionId;

    public void setConnectionId(int connectionId) {
        this.connectionId = connectionId;
    }

    public int getConnectionId() {
        return connectionId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy