use of com.baidu.hugegraph.computer.core.combiner.MessageValueCombiner in project hugegraph-computer by hugegraph.
the class SortManager method createMessageCombiner.
private PointerCombiner createMessageCombiner() {
Config config = this.context.config();
Combiner<Value> valueCombiner = config.createObject(ComputerOptions.WORKER_COMBINER_CLASS, false);
if (valueCombiner == null) {
return null;
}
return new MessageValueCombiner(this.context);
}
Aggregations