sqlg3.runtime.SessionListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlg3-runtime Show documentation
Show all versions of sqlg3-runtime Show documentation
SQLG is a preprocessor and a library that uses code generation to simplify writing JDBC code
package sqlg3.runtime;
public interface SessionListener {
void opened(long sessionId, String user, String host, Object userObject);
void closed(long sessionId);
}