Package eu.stratosphere.pact.runtime.task.util

Examples of eu.stratosphere.pact.runtime.task.util.TaskConfig.usesConvergenceCriterion()


      Aggregator<?> agg = InstantiationUtil.instantiate(aggWithName.getAggregator(), Aggregator.class);
      aggregators.put(aggWithName.getName(), agg);
    }
   
    // instantiate the aggregator convergence criterion
    if (taskConfig.usesConvergenceCriterion()) {
      Class<? extends ConvergenceCriterion<Value>> convClass = taskConfig.getConvergenceCriterion();
      convergenceCriterion = InstantiationUtil.instantiate(convClass, ConvergenceCriterion.class);
      convergenceAggregatorName = taskConfig.getConvergenceCriterionAggregatorName();
      Preconditions.checkNotNull(convergenceAggregatorName);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.