1 6 package org.logicalcobwebs.proxool; 7 8 import java.sql.Connection ; 9 import java.sql.SQLException ; 10 11 29 public interface ConnectionListenerIF { 30 31 39 void onBirth(Connection connection) throws SQLException ; 40 41 48 void onDeath(Connection connection) throws SQLException ; 49 50 58 void onExecute(String command, long elapsedTime); 59 60 69 void onFail(String command, Exception exception); 70 71 } 72 73 104 | Popular Tags |