Package org.apache.derby.client.am
Interface ConnectionCallbackInterface
-
- All Known Implementing Classes:
ClientConnection
,NetConnection
public interface ConnectionCallbackInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
completeAbnormalUnitOfWork()
void
completeAbnormalUnitOfWork(UnitOfWorkListener uwl)
Rollback the UnitOfWorkListener specifically.void
completeChainBreakingDisconnect()
void
completeLocalCommit()
void
completeLocalRollback()
void
completePiggyBackIsolation(int pbIsolation)
Completes piggy-backing of the new current isolation level by updating the cached copy in am.Connection.void
completePiggyBackSchema(java.lang.String pbSchema)
Completes piggy-backing of the new current schema by updating the cached copy in am.Connection.void
completeSqlca(Sqlca e)
-
-
-
Method Detail
-
completeLocalCommit
void completeLocalCommit()
-
completeLocalRollback
void completeLocalRollback()
-
completeAbnormalUnitOfWork
void completeAbnormalUnitOfWork()
-
completeChainBreakingDisconnect
void completeChainBreakingDisconnect()
-
completeSqlca
void completeSqlca(Sqlca e)
-
completeAbnormalUnitOfWork
void completeAbnormalUnitOfWork(UnitOfWorkListener uwl)
Rollback the UnitOfWorkListener specifically.- Parameters:
uwl
- The UnitOfWorkListener to be rolled back.
-
completePiggyBackIsolation
void completePiggyBackIsolation(int pbIsolation)
Completes piggy-backing of the new current isolation level by updating the cached copy in am.Connection.- Parameters:
pbIsolation
- new isolation level from the server
-
completePiggyBackSchema
void completePiggyBackSchema(java.lang.String pbSchema)
Completes piggy-backing of the new current schema by updating the cached copy in am.Connection.- Parameters:
pbSchema
- new current schema from the server
-
-