Interface AggregateRpcService
-
public interface AggregateRpcService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V extends org.apache.hugegraph.computer.core.graph.value.Value>
voidaggregateAggregator(java.lang.String name, V value)voidaggregateAggregators(java.util.Map<java.lang.String,org.apache.hugegraph.computer.core.graph.value.Value> aggregators)<V extends org.apache.hugegraph.computer.core.graph.value.Value>
org.apache.hugegraph.computer.core.aggregator.Aggregator<V>getAggregator(java.lang.String name)java.util.Map<java.lang.String,org.apache.hugegraph.computer.core.graph.value.Value>listAggregators()RegisterAggregatorsregisteredAggregators()
-
-
-
Method Detail
-
registeredAggregators
RegisterAggregators registeredAggregators()
-
listAggregators
java.util.Map<java.lang.String,org.apache.hugegraph.computer.core.graph.value.Value> listAggregators()
-
aggregateAggregators
void aggregateAggregators(java.util.Map<java.lang.String,org.apache.hugegraph.computer.core.graph.value.Value> aggregators)
-
getAggregator
<V extends org.apache.hugegraph.computer.core.graph.value.Value> org.apache.hugegraph.computer.core.aggregator.Aggregator<V> getAggregator(java.lang.String name)
-
aggregateAggregator
<V extends org.apache.hugegraph.computer.core.graph.value.Value> void aggregateAggregator(java.lang.String name, V value)
-
-