package org.opentrafficsim.imb.modelproperties; /** * This interface defines that should be implemented in order to transmit a model property to an IMB Model Controller. *
* Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @version $Revision$, $LastChangedDate$, by $Author$, initial version Oct 26, 2016
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
public interface IMBModelPropertyTransmitter
{
/**
* Construct an Object array containing the objects that must be transmitted. Each of these objects must be a Boolean,
* Integer, Double, or String,or implement prepare and qWrite.
* @return Object[]; Object array containing the objects that must be transmitted
*/
public Object[] buildMessage();
}