Package system

Examples of system.Message


   *            Outgoing edge on which this message must be sent
   * @param msgValue
   *            Value of the message
   */
  public void sendMessage(Edge e, double msgValue) {
    Message aMsg = new Message(e.getSourceVertexID(), e.getDestVertexID(),
        msgValue, this.getSuperStep());
    this.gPartition.send(aMsg);
  }
View Full Code Here

TOP

Related Classes of system.Message

Copyright © 2018 www.massapicom. 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.