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 voidcompleteAbnormalUnitOfWork()voidcompleteAbnormalUnitOfWork(UnitOfWorkListener uwl)Rollback the UnitOfWorkListener specifically.voidcompleteChainBreakingDisconnect()voidcompleteLocalCommit()voidcompleteLocalRollback()voidcompletePiggyBackIsolation(int pbIsolation)Completes piggy-backing of the new current isolation level by updating the cached copy in am.Connection.voidcompletePiggyBackSchema(java.lang.String pbSchema)Completes piggy-backing of the new current schema by updating the cached copy in am.Connection.voidcompleteSqlca(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
-
-