Click or drag to resize

ICacheService Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An ICacheService is a service providing a collection of named caches that hold resources.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface ICacheService : IService, 
	IService, IControllable

The ICacheService type exposes the following members.

Properties
  NameDescription
Public propertyCacheNames
A collection of string objects, one for each cache name that has been previously registered with this ICacheService.
Public propertyInfo
Gets the IServiceInfo object for this IService.
(Inherited from IService.)
Public propertyIsRunning
Determine whether or not the controllable service is running.
(Inherited from IControllable.)
Public propertySerializer
The ISerializer used to serialize and deserialize objects by this IService.
(Inherited from IService.)
Public propertyUserContext
Gets or sets the user context object associated with this IService.
(Inherited from IService.)
Top
Methods
  NameDescription
Public methodConfigure
Configure the controllable service.
(Inherited from IControllable.)
Public methodDestroyCache
Release and destroy the specified cache.
Public methodEnsureCache
Obtain an INamedCache interface that provides a view of cached resources.
Public methodReleaseCache
Release local resources associated with the specified instance of the cache.
Public methodShutdown
Stop the controllable service.
(Inherited from IControllable.)
Public methodStart
Start the controllable service.
(Inherited from IControllable.)
Public methodStop
Hard-stop the controllable service.
(Inherited from IControllable.)
Top
Events
  NameDescription
Public eventMemberJoined
Invoked when an IMember has joined the service.
(Inherited from IService.)
Public eventMemberLeaving
Invoked when an IMember is leaving the service.
(Inherited from IService.)
Public eventMemberLeft
Invoked when an IMember has left the service.
(Inherited from IService.)
Public eventServiceStarted
Invoked when IService has started.
(Inherited from IService.)
Public eventServiceStarting
Invoked when IService is starting.
(Inherited from IService.)
Public eventServiceStopped
Invoked when IService has stopped.
(Inherited from IService.)
Public eventServiceStopping
Invoked when IService is stopping.
(Inherited from IService.)
Top
Remarks
These resources are expected to be managed in memory, and are typically composed of data that are also stored persistently in a database, or data that have been assembled or calculated at some significant cost, thus these resources are referred to as cached.
See Also