Called after an item has been updated (after the transaction completes), instead of calling Release().

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

Syntax

Visual Basic (Declaration)
Sub AfterUpdate ( _
	key As CacheKey, _
	value As Object, _
	version As Object, _
	lock As ISoftLock _
)
C#
void AfterUpdate(
	CacheKey key,
	Object value,
	Object version,
	ISoftLock lock
)
Visual C++
void AfterUpdate(
	CacheKey^ key, 
	Object^ value, 
	Object^ version, 
	ISoftLock^ lock
)
JavaScript
function afterUpdate(key, value, version, lock);

Remarks

This method is used by "asynchronous" concurrency strategies.

See Also