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:
  • Method Details

    • 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 interface MessageCombiner<Double>
      Parameters:
      messageA - the first message
      messageB - the second message
      Returns:
      the combination of the two messages
    • instance

      public static Optional<PageRankMessageCombiner> instance()