|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Supplier | |
---|---|
com.hazelcast.client.proxy | This package contains client side proxy implementations of the different Hazelcast data structures and operation types |
com.hazelcast.core | Provides core API interfaces/classes. |
com.hazelcast.map.impl.proxy | Contains map proxy implementation and support classes. |
com.hazelcast.mapreduce.aggregation | This package contains the aggregation API and the convenience helper classes to retrieve predefined aggregation implementations. |
com.hazelcast.mapreduce.aggregation.impl | This package contains a set of predefined aggregation implementations |
com.hazelcast.multimap.impl | Contains classes for Hazelcast MultiMap module. |
Uses of Supplier in com.hazelcast.client.proxy |
---|
Methods in com.hazelcast.client.proxy with parameters of type Supplier | ||
---|---|---|
|
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
|
|
|
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
|
|
|
ClientMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
|
|
|
ClientMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
|
Uses of Supplier in com.hazelcast.core |
---|
Methods in com.hazelcast.core with parameters of type Supplier | ||
---|---|---|
|
IMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
Executes a predefined aggregation on the maps data set. |
|
|
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
Executes a predefined aggregation on the multimaps data set. |
|
|
IMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
Executes a predefined aggregation on the maps data set. |
|
|
MultiMap.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
Executes a predefined aggregation on the multimaps data set. |
Uses of Supplier in com.hazelcast.map.impl.proxy |
---|
Methods in com.hazelcast.map.impl.proxy with parameters of type Supplier | ||
---|---|---|
|
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
|
|
|
MapProxyImpl.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
|
Uses of Supplier in com.hazelcast.mapreduce.aggregation |
---|
Methods in com.hazelcast.mapreduce.aggregation that return Supplier | ||
---|---|---|
static
|
Supplier.all()
The predefined Supplier selects all values and does not perform any kind of data transformation. |
|
static
|
Supplier.all(PropertyExtractor<ValueIn,ValueOut> propertyExtractor)
The predefined Supplier selects all values and performs the given PropertyExtractor s transformation to the
input data. |
|
static
|
Supplier.fromKeyPredicate(KeyPredicate<KeyIn> keyPredicate)
The predefined Supplier selects values using the given KeyPredicate
and does not perform any kind of data transformation. |
|
static
|
Supplier.fromKeyPredicate(KeyPredicate<KeyIn> keyPredicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
The predefined Supplier selects values using the given KeyPredicate
and chains the filtered value to the given Supplier which might perform data transformation. |
|
static
|
Supplier.fromPredicate(Predicate<KeyIn,ValueIn> predicate)
The predefined Supplier selects values using the given Predicate
and does not perform any kind of data transformation. |
|
static
|
Supplier.fromPredicate(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
The predefined Supplier selects values using the given Predicate
and chains the filtered value to the given Supplier which might perform data transformation. |
Methods in com.hazelcast.mapreduce.aggregation with parameters of type Supplier | ||
---|---|---|
static
|
Supplier.fromKeyPredicate(KeyPredicate<KeyIn> keyPredicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
The predefined Supplier selects values using the given KeyPredicate
and chains the filtered value to the given Supplier which might perform data transformation. |
|
static
|
Supplier.fromPredicate(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
The predefined Supplier selects values using the given Predicate
and chains the filtered value to the given Supplier which might perform data transformation. |
|
Mapper |
Aggregation.getMapper(Supplier<Key,?,Supplied> supplier)
Returns the Mapper for this aggregation. |
Uses of Supplier in com.hazelcast.mapreduce.aggregation.impl |
---|
Subclasses of Supplier in com.hazelcast.mapreduce.aggregation.impl | |
---|---|
class |
AcceptAllSupplier<KeyIn,ValueIn,ValueOut>
A standard implementation of the Supplier
interface which accepts all input values and may apply a given
PropertyExtractor on those. |
class |
KeyPredicateSupplier<KeyIn,ValueIn,ValueOut>
The default supplier for KeyPredicate s, used
to filter and optionally transform data (using the given
Supplier ). |
class |
PredicateSupplier<KeyIn,ValueIn,ValueOut>
The default supplier for Predicate s, used
to filter and optionally transform data (using the given
Supplier ). |
Constructors in com.hazelcast.mapreduce.aggregation.impl with parameters of type Supplier | |
---|---|
KeyPredicateSupplier(KeyPredicate<KeyIn> keyPredicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
|
|
PredicateSupplier(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
|
Uses of Supplier in com.hazelcast.multimap.impl |
---|
Methods in com.hazelcast.multimap.impl with parameters of type Supplier | ||
---|---|---|
|
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation)
|
|
|
ObjectMultiMapProxy.aggregate(Supplier<K,V,SuppliedValue> supplier,
Aggregation<K,SuppliedValue,Result> aggregation,
JobTracker jobTracker)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |