Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Initialize the ContinuousQueryCache.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public ContinuousQueryCache(
	Func<INamedCache> supplierCache,
	IFilter filter,
	bool cacheValues,
	ICacheListener cacheListener,
	IValueExtractor transformer
)

Parameters

supplierCache
Type: System..::..Func<(Of <(<'INamedCache>)>)>
The Func returning an INamedCache with which this ContinuousQueryCache will be created. The Func must return a new instance each time it is invoked.
filter
Type: Tangosol.Util..::..IFilter
The filter that defines the view.
cacheValues
Type: System..::..Boolean
Pass true to cache both the keys and values of the materialized view locally, or false to only cache the keys.
cacheListener
Type: Tangosol.Net.Cache..::..ICacheListener
The optional ICacheListener that will receive all events starting from the initialization of the ContinuousQueryCache.
transformer
Type: Tangosol.Util..::..IValueExtractor
The transformer that should be used to convert values from the underlying cache before storing them locally

See Also