ContinuousQueryCache Constructor (FuncINamedCache, IFilter, Boolean, ICacheListener, IValueExtractor) | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Initialize the ContinuousQueryCache.
            
 
    Namespace: 
   Tangosol.Net.Cache
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic ContinuousQueryCache(
	Func<INamedCache> supplierCache,
	IFilter filter,
	bool cacheValues,
	ICacheListener cacheListener,
	IValueExtractor transformer
)
Parameters
- supplierCache
 - Type: SystemFuncINamedCache
            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.UtilIFilter
            The filter that defines the view.
             - cacheValues
 - Type: SystemBoolean
            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.CacheICacheListener
            The optional ICacheListener that will receive all events
            starting from the initialization of the ContinuousQueryCache.
             - transformer
 - Type: Tangosol.UtilIValueExtractor
            The transformer that should be used to convert values from the 
            underlying cache before storing them locally
             
See Also