Class PageRankMessageCombiner
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankMessageCombiner
-
- All Implemented Interfaces:
Serializable
,MessageCombiner<Double>
public class PageRankMessageCombiner extends Object implements MessageCombiner<Double>
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Double
combine(Double messageA, Double messageB)
Combine two messages and return a message containing the combination.static Optional<PageRankMessageCombiner>
instance()
-
-
-
Method Detail
-
combine
public Double combine(Double messageA, Double messageB)
Description copied from interface:MessageCombiner
Combine two messages and return a message containing the combination. In many instances, it is possible to simply merge the data in the second message into the first message. Such an optimization can limit the amount of object creation.- Specified by:
combine
in interfaceMessageCombiner<Double>
- Parameters:
messageA
- the first messagemessageB
- the second message- Returns:
- the combination of the two messages
-
instance
public static Optional<PageRankMessageCombiner> instance()
-
-