Implementors manage transactional access to cached data.

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

Syntax

C#
public interface ICacheConcurrencyStrategy
Visual Basic
Public Interface ICacheConcurrencyStrategy
Visual C++
public interface class ICacheConcurrencyStrategy

Remarks

Transactions pass in a timestamp indicating transaction start time.

When used to cache entities and collections the key is the identifier of the entity/collection and the value should be set to the CacheEntry for an entity and the results of Disassemble(ICollectionPersister) for a collection.

See Also