package nl.tudelft.simulation.dsol.naming.demo; import org.djutils.event.EventType; import org.djutils.event.remote.RemoteEventProducerInterface; import org.djutils.metadata.MetaData; /** * DemoServerInterface.java. *
* Copyright (c) 2020-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information https://simulation.tudelft.nl. The DSOL * project is distributed under a three-clause BSD-style license, which can be found at * * https://simulation.tudelft.nl/dsol/3.0/license.html. *
* @author Alexander Verbraeck */ public interface DemoServerInterface extends RemoteEventProducerInterface { /** the exit event. */ public static final EventType EXIT_EVENT = new EventType(new MetaData("EXIT", "exit")); }