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

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

Syntax

Visual Basic (Declaration)
Sub Update ( _
	key As CacheKey, _
	value As Object _
)
C#
void Update(
	CacheKey key,
	Object value
)
Visual C++
void Update(
	CacheKey^ key, 
	Object^ value
)
JavaScript
function update(key, value);

Remarks

This method is used by "synchronous" concurrency strategies.

See Also