Uses of Interface
com.tangosol.util.function.Remote.ToIntFunction
Package
Description
Contains classes to enable Repository-like access to Coherence data.
Contains classes related to partitioned cache implementation of Coherence JCache.
Contains packages and classes related to the Coherence REST API utilities.
Contains classes that providing topic entities for publish/subscribe messaging.
Contains various generic utilities.
Contains
ValueExtractor
and
ValueUpdater
related classes.Contains Functional interfaces allowing remote execution of lambda expressions and method references.
Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections.
-
Uses of Remote.ToIntFunction in com.oracle.coherence.repository
Modifier and TypeMethodDescriptionAbstractAsyncRepository.average
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the average of the specified function.AbstractAsyncRepository.average
(Remote.ToIntFunction<? super T> extractor) Return the average of the specified function.double
AbstractRepository.average
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the average of the specified function.double
AbstractRepository.average
(Remote.ToIntFunction<? super T> extractor) Return the average of the specified function.AbstractAsyncRepository.max
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the maximum value of the specified function.AbstractAsyncRepository.max
(Remote.ToIntFunction<? super T> extractor) Return the maximum value of the specified function.int
AbstractRepository.max
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the maximum value of the specified function.int
AbstractRepository.max
(Remote.ToIntFunction<? super T> extractor) Return the maximum value of the specified function.AbstractAsyncRepository.min
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the minimum value of the specified function.AbstractAsyncRepository.min
(Remote.ToIntFunction<? super T> extractor) Return the minimum value of the specified function.int
AbstractRepository.min
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the minimum value of the specified function.int
AbstractRepository.min
(Remote.ToIntFunction<? super T> extractor) Return the minimum value of the specified function.AbstractAsyncRepository.sum
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the sum of the specified function.AbstractAsyncRepository.sum
(Remote.ToIntFunction<? super T> extractor) Return the sum of the specified function.long
AbstractRepository.sum
(Filter<?> filter, Remote.ToIntFunction<? super T> extractor) Return the sum of the specified function.long
AbstractRepository.sum
(Remote.ToIntFunction<? super T> extractor) Return the sum of the specified function. -
Uses of Remote.ToIntFunction in com.tangosol.coherence.jcache.partitionedcache
Modifier and TypeClassDescriptionstatic class
Get CacheStatistics from binEntry's context for JCache id. -
Uses of Remote.ToIntFunction in com.tangosol.coherence.rest.util
Modifier and TypeClassDescriptionclass
PropertySet<T>
Represents a set of named properties and allows the extraction of those properties from a target object. -
Uses of Remote.ToIntFunction in com.tangosol.net.topic
Modifier and TypeMethodDescriptionstatic <V> Publisher.OrderBy
<V> Publisher.OrderBy.value
(Remote.ToIntFunction<? super V> supplierOrderId) Return an OrderBy which will compute the unit-of-order based on thesent value
. -
Uses of Remote.ToIntFunction in com.tangosol.util
Modifier and TypeInterfaceDescriptioninterface
ValueExtractor<T,
E> ValueExtractor is used to both extract values (for example, for sorting or filtering) from an object, and to provide an identity for that extraction.Modifier and TypeClassDescriptionstatic class
A ValueExtractor that always results in the passed-in value.Modifier and TypeMethodDescriptionstatic <K,
V, T> InvocableMap.StreamingAggregator <K, V, ?, Double> Aggregators.average
(Remote.ToIntFunction<? super T> extractor) Return an aggregator that calculates an average of the int values extracted from a set of entries in a Map.static <K,
V, T> InvocableMap.StreamingAggregator <K, V, ?, Long> Aggregators.max
(Remote.ToIntFunction<? super T> extractor) Return an aggregator that calculates a maximum of the int values extracted from a set of entries in a Map.static <K,
V, T> InvocableMap.StreamingAggregator <K, V, ?, Long> Aggregators.min
(Remote.ToIntFunction<? super T> extractor) Return an aggregator that calculates a minimum of the int values extracted from a set of entries in a Map.static <K,
V, T> InvocableMap.StreamingAggregator <K, V, ?, Long> Aggregators.sum
(Remote.ToIntFunction<? super T> extractor) Return an aggregator that calculates a sum of the int values extracted from a set of entries in a Map. -
Uses of Remote.ToIntFunction in com.tangosol.util.extractor
Modifier and TypeInterfaceDescriptioninterface
IndexAwareExtractor<T,
E> IndexAwareExtractor is an extension to theValueExtractor
interface that supports the creation and destruction of anindex
.Modifier and TypeClassDescriptionclass
Abstract super class for ValueExtractor implementations that are based on an underlying array of ValueExtractor objects.class
AbstractExtractor<T,
E> Abstract base for ValueExtractor implementations.class
ChainedExtractor<T,
E> Composite ValueExtractor implementation based on an array of extractors.class
AValueExtractor
that extracts aFragment
from a nested property of the target object.class
ComparisonValueExtractor<T,
E extends Number> A synthetic ValueExtractor that returns a result of comparison between two values extracted from the same target.class
ConditionalExtractor<T,
E> An IndexAwareExtractor implementation that is only used to create aConditionalIndex
.class
DeserializationAccelerator is anIndexAwareExtractor
implementation that is used to create aForwardOnlyMapIndex
, which in turn is used for deserialization optimization.class
The EntryExtractor is a base abstract class for special purpose custom ValueExtractor implementations.class
AValueExtractor
that is used to extract aFragment
from an object.class
Trivial ValueExtractor implementation that does not actually extract anything from the passed value, but returns the value itself.class
KeyExtractor<T,
E> The KeyExtractor is a special purpose ValueExtractor implementation that serves as an indicator that a query should be run against the key objects rather than the values.class
Composite ValueExtractor implementation based on an array of extractors.class
PofExtractor<T,
E> POF-based ValueExtractor implementation.class
ReflectionExtractor<T,
E> Reflection-based ValueExtractor implementation.class
ScriptValueExtractor<T,
E> ScriptValueExtractor is anAbstractExtractor
that wraps a script written in one of the languages supported by Graal VM.class
UniversalExtractor<T,
E> Universal ValueExtractor implementation. -
Uses of Remote.ToIntFunction in com.tangosol.util.function
Modifier and TypeMethodDescriptionstatic <T> Remote.ToIntFunction
<T> Remote.toIntFunction
(Remote.ToIntFunction<T> function) Capture serializable ToIntFunction.Modifier and TypeMethodDescriptionstatic <T> Remote.Comparator
<T> Remote.Comparator.comparingInt
(Remote.ToIntFunction<? super T> keyExtractor) Accepts a function that extracts anint
sort key from a typeT
, and returns aComparator<T>
that compares by that sort key.default Remote.Comparator
<T> Remote.Comparator.thenComparingInt
(Remote.ToIntFunction<? super T> keyExtractor) Returns a lexicographic-order comparator with a function that extracts aint
sort key.static <T> Remote.ToIntFunction
<T> Remote.toIntFunction
(Remote.ToIntFunction<T> function) Capture serializable ToIntFunction. -
Uses of Remote.ToIntFunction in com.tangosol.util.stream
Modifier and TypeMethodDescriptiondefault RemoteIntStream
RemoteStream.mapToInt
(Remote.ToIntFunction<? super T> mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.