Uses of Interface
com.tangosol.util.InvocableMap
Packages that use InvocableMap
Package
Description
Contains basic cluster interfaces and factories.
Contains classes providing various caching strategies.
Contains various generic utilities.
Contains classes to support functional-style operations on remote streams of elements,
 such as map-reduce transformations on collections.
- 
Uses of InvocableMap in com.tangosol.net
Subinterfaces of InvocableMap in com.tangosol.netModifier and TypeInterfaceDescriptioninterfaceNamedCache<K,V> A Map-based data-structure that manages entries across one or more processes.interfaceNamedMap<K,V> A Map-based data-structure that manages entries across one or more processes. - 
Uses of InvocableMap in com.tangosol.net.cache
Classes in com.tangosol.net.cache that implement InvocableMapModifier and TypeClassDescriptionclassBundling NamedCache implementation.classContinuousQueryCache<K,V_BACK, V_FRONT> Create a materialized view of aNamedCacheusing theCoherenceContinuous Query capability.classNearCache<K,V> A "near cache" is a CachingMap whose front map is a size-limited and/or auto-expiring local cache, and whose back map is a distributed cache.classReadonlyNamedCache<K,V> A simple extension of the WrapperNamedCache implementation that shields all content mutating operations such as put(), remove(), lock() etc.classDeprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the NearCache implementationclassWrapperNamedCache<K,V> A simple implementation of NamedCache interface built as a wrapper around any Map implementation. - 
Uses of InvocableMap in com.tangosol.util
Classes in com.tangosol.util that implement InvocableMapModifier and TypeClassDescriptionstatic classConverterCollections.ConverterInvocableMap<FK,TK, FV, TV> A Converter InvocableMap views an underlying InvocableMap through a set of key and value Converters.static classConverterCollections.ConverterNamedCache<FK,TK, FV, TV> A Converter NamedCache views an underlying NamedCache through a set of key and value Converters.Fields in com.tangosol.util declared as InvocableMapModifier and TypeFieldDescriptionprotected InvocableMap<TK, TV> ConverterCollections.ConverterNamedCache.m_mapInvocableA Converter InvocableMap around the underlying NamedCache.Methods in com.tangosol.util that return InvocableMapModifier and TypeMethodDescriptionConverterCollections.ConverterInvocableMap.getInvocableMap()Return the underlying InvocableMap.static <FK,TK, FV, TV> 
InvocableMap<TK, TV> ConverterCollections.getInvocableMap(InvocableMap<FK, FV> map, Converter<FK, TK> convKeyUp, Converter<TK, FK> convKeyDown, Converter<FV, TV> convValUp, Converter<TV, FV> convValDown) Returns a Converter instance of InvocableMap.Methods in com.tangosol.util with parameters of type InvocableMapModifier and TypeMethodDescriptionstatic <FK,TK, FV, TV> 
InvocableMap<TK, TV> ConverterCollections.getInvocableMap(InvocableMap<FK, FV> map, Converter<FK, TK> convKeyUp, Converter<TK, FK> convKeyDown, Converter<FV, TV> convValUp, Converter<TV, FV> convValDown) Returns a Converter instance of InvocableMap.Constructors in com.tangosol.util with parameters of type InvocableMap - 
Uses of InvocableMap in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type InvocableMapModifier and TypeMethodDescriptionstatic <K,V> RemoteStream <InvocableMap.Entry<K, V>> RemoteStream.entrySet(InvocableMap<K, V> map) Create aRemoteStreamof specified map's entries.static <K,V> RemoteStream <K> RemoteStream.keySet(InvocableMap<K, V> map) Create aRemoteStreamof specified map's keys.static <K,V> RemoteStream <V> RemoteStream.values(InvocableMap<K, V> map) Create aRemoteStreamof specified map's values.