ContinuousQueryCache Constructor (FuncINamedCache, IFilter) | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Create a locally materialized view of an 
INamedCache using
            an 
IFilter.
            
 
    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
)
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.
             
Remarks
            A materialized view is an implementation of Continuous Query
            exposed through the standard INamedCache API. This constructor will
            result in a ContinuousQueryCache that caches both its keys and
            values locally.
            
See Also