public synchronized void removeStatementEventListener(StatementEventListener mlistener) {
   mlisteners.remove(mlistener);
 }
Beispiel #2
0
 static synchronized void pushConnectionBackToPool(ConnectionWrapper con) {
   boolean exist = m_usedUsedConnection.remove(con);
   if (exist) {
     m_notUsedConnection.addLast(con);
   }
 }