Package com.hazelcast.mapreduce.aggregation.impl

Examples of com.hazelcast.mapreduce.aggregation.impl.AcceptAllSupplier


     * @param <ValueIn>  the input value type
     * @param <ValueOut> the supplied value type
     * @return all values from the underlying data structure as stored
     */
    public static <KeyIn, ValueIn, ValueOut> Supplier<KeyIn, ValueIn, ValueOut> all() {
        return new AcceptAllSupplier(null);
    }
View Full Code Here


     * @return all values from the underlying data structure transformed using the given PropertyExtractor
     */
    public static <KeyIn, ValueIn, ValueOut> Supplier<KeyIn, ValueIn, ValueOut> all(
            PropertyExtractor<ValueIn, ValueOut> propertyExtractor) {

        return new AcceptAllSupplier(propertyExtractor);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.mapreduce.aggregation.impl.AcceptAllSupplier

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.