Class LocalCache.InternalListener
An internal ICacheListener that listens to this cache and reports changes to the ICacheStore.
Implements
Inherited Members
Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
protected class LocalCache.InternalListener : ICacheListener
Constructors
InternalListener(LocalCache)
Parametrized constructor.
Declaration
public InternalListener(LocalCache parentCache)
Parameters
Type | Name | Description |
---|---|---|
LocalCache | parentCache | Parent LocalCache. |
Methods
EntryDeleted(CacheEventArgs)
Invoked when a cache entry has been deleted.
Declaration
public virtual void EntryDeleted(CacheEventArgs evt)
Parameters
Type | Name | Description |
---|---|---|
CacheEventArgs | evt | The CacheEventArgs carrying the remove information. |
EntryInserted(CacheEventArgs)
Invoked when a cache entry has been inserted.
Declaration
public virtual void EntryInserted(CacheEventArgs evt)
Parameters
Type | Name | Description |
---|---|---|
CacheEventArgs | evt | The CacheEventArgs carrying the insert information. |
EntryUpdated(CacheEventArgs)
Invoked when a cache entry has been updated.
Declaration
public virtual void EntryUpdated(CacheEventArgs evt)
Parameters
Type | Name | Description |
---|---|---|
CacheEventArgs | evt | The CacheEventArgs carrying the update information. |