Show / Hide Table of Contents

Interface ICacheListener

The listener interface for receiving CacheEventArgs.

Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
public interface ICacheListener

Methods

EntryDeleted(CacheEventArgs)

Invoked when a cache entry has been deleted.

Declaration
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
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
void EntryUpdated(CacheEventArgs evt)
Parameters
Type Name Description
CacheEventArgs evt

The CacheEventArgs carrying the update information.

See Also

IObservableCache
CacheEventArgs
In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.