FM4SimStartMessage.java

  1. package org.sim0mq.message.federationmanager;

  2. import org.sim0mq.Sim0MQException;
  3. import org.sim0mq.message.Sim0MQMessage;

  4. /**
  5.  * SimStart, FM.4. Message sent by the Federation Manager to start the simulation.
  6.  * <p>
  7.  * Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
  8.  * BSD-style license. See <a href="http://sim0mq.org/docs/current/license.html">Sim0MQ License</a>.
  9.  * </p>
  10.  * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
  11.  */
  12. public class FM4SimStartMessage extends Sim0MQMessage
  13. {
  14.     /** the unique message id. */
  15.     private static final String MESSAGETYPE = "FM.4";

  16.     /** */
  17.     private static final long serialVersionUID = 20190712L;

  18.     /**
  19.      * @param federationId the federation id can be coded using different types. Examples are two 64-bit longs indicating a
  20.      *            UUID, or a String with a UUID number, a String with meaningful identification, or a short or an int with a
  21.      *            simulation run number.
  22.      * @param senderId The sender id can be used to send back a message to the sender at some later time.
  23.      * @param receiverId The receiver id can be used to check whether the message is meant for us, or should be discarded (or an
  24.      *            error can be sent if we receive a message not meant for us).
  25.      * @param messageId The unique message number is meant to confirm with a callback that the message has been received
  26.      *            correctly. The number is unique for the sender, so not globally within the federation.
  27.      * @throws Sim0MQException on unknown data type
  28.      * @throws NullPointerException when one of the parameters is null
  29.      */
  30.     public FM4SimStartMessage(final Object federationId, final Object senderId, final Object receiverId, final Object messageId)
  31.             throws Sim0MQException, NullPointerException
  32.     {
  33.         super(true, federationId, senderId, receiverId, MESSAGETYPE, messageId, null);
  34.     }

  35.     /**
  36.      * @param objectArray Object[]; Full message object array
  37.      * @throws Sim0MQException on unknown data type
  38.      * @throws NullPointerException when one of the parameters is null
  39.      */
  40.     public FM4SimStartMessage(final Object[] objectArray) throws Sim0MQException, NullPointerException
  41.     {
  42.         super(objectArray, 0, MESSAGETYPE);
  43.     }

  44.     /**
  45.      * Builder for the SimStart Message. Can string setters together, and call build() at the end to build the actual message.
  46.      * <p>
  47.      * Copyright (c) 2019-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
  48.      * <br>
  49.      * BSD-style license. See <a href="http://sim0mq.org/docs/current/license.html">Sim0MQ License</a>.
  50.      * </p>
  51.      * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
  52.      */
  53.     public static class Builder extends Sim0MQMessage.Builder<FM4SimStartMessage.Builder>
  54.     {
  55.         /**
  56.          * Empty constructor.
  57.          */
  58.         public Builder()
  59.         {
  60.             // nothing to do.
  61.         }

  62.         @Override
  63.         public FM4SimStartMessage build() throws Sim0MQException, NullPointerException
  64.         {
  65.             return new FM4SimStartMessage(this.federationId, this.senderId, this.receiverId, this.messageId);
  66.         }

  67.     }
  68. }