Notify the session that the transaction completed, so we no longer own the old locks. (Also we shold release cache softlocks). May be called multiple times during the transaction completion process.

Namespace:  NHibernate.Engine
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Sub AfterTransactionCompletion ( _
	successful As Boolean, _
	tx As ITransaction _
)
C#
void AfterTransactionCompletion(
	bool successful,
	ITransaction tx
)
Visual C++
void AfterTransactionCompletion(
	bool successful, 
	ITransaction^ tx
)
JavaScript
function afterTransactionCompletion(successful, tx);

Parameters

successful
Type: System..::.Boolean
tx
Type: NHibernate..::.ITransaction

See Also