Package | Description |
---|---|
com.tangosol.net |
Contains basic cluster interfaces and factories.
|
Modifier and Type | Method and Description |
---|---|
ViewBuilder<K,V> |
ViewBuilder.filter(Filter<?> filter)
The
Filter that will be used to define the entries maintained in this view. |
ViewBuilder<K,V> |
ViewBuilder.keys()
The resulting
view will only cache keys. |
ViewBuilder<K,V> |
ViewBuilder.listener(MapListener<? super K,? super V> listener)
The
MapListener that will receive all events, including those that
result from the initial population of the view . |
<U> ViewBuilder<K,U> |
ViewBuilder.map(ValueExtractor<? super V,? extends U> mapper)
The
ValueExtractor that this view will use to transform the results from
the underlying cache prior to storing them locally. |
ViewBuilder<K,V> |
ViewBuilder.values()
The resulting
view with cache both keys and values. |
default ViewBuilder<K,V> |
NamedCache.view()
Construct a
view of this NamedCache . |
ViewBuilder<K,V> |
ViewBuilder.withClassLoader(ClassLoader loader)
The optional
ClassLoader to use when performing serialization/de-serialization operations. |