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

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

Syntax

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

Remarks

This method is used by "synchronous" concurrency strategies.

See Also