
com.mchange.v2.c3p0.stmt.PerConnectionMaxOnlyStatementCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.c3p0
Show all versions of org.apache.servicemix.bundles.c3p0
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.mchange.v2.c3p0.stmt;
import java.sql.*;
import com.mchange.v2.async.AsynchronousRunner;
public final class PerConnectionMaxOnlyStatementCache extends GooGooStatementCache
{
//MT: protected by parent's mainLock
int max_statements_per_connection;
DeathmarchConnectionStatementManager dcsm;
public PerConnectionMaxOnlyStatementCache (
AsynchronousRunner blockingTaskAsyncRunner,
AsynchronousRunner deferredStatementDestroyer,
int max_statements_per_connection,
boolean cancelAutomaticallyClosedStatements
)
{
super( blockingTaskAsyncRunner, deferredStatementDestroyer, cancelAutomaticallyClosedStatements );
this.max_statements_per_connection = max_statements_per_connection;
}
//called only in parent's constructor
protected ConnectionStatementManager createConnectionStatementManager()
{ return (this.dcsm = new DeathmarchConnectionStatementManager()); }
//all below called by parent only with mainLock
void addStatementToDeathmarches( Object pstmt, Connection physicalConnection )
{ dcsm.getDeathmarch( physicalConnection ).deathmarchStatement( pstmt ); }
void removeStatementFromDeathmarches( Object pstmt, Connection physicalConnection )
{ dcsm.getDeathmarch( physicalConnection ).undeathmarchStatement( pstmt ); }
boolean prepareAssimilateNewStatement(Connection pcon)
{
int cxn_stmt_count = dcsm.getNumStatementsForConnection( pcon );
return ( cxn_stmt_count < max_statements_per_connection || (cxn_stmt_count == max_statements_per_connection && dcsm.getDeathmarch( pcon ).cullNext()) );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy