1 package org.djutils.event.remote; 2 3 import java.rmi.Remote; 4 5 import org.djutils.event.EventProducerInterface; 6 7 /** 8 * The RemoteEventProducerInterface provides a remote implementation of the EventProducerInterface. 9 * <p> 10 * Copyright (c) 2002-2022 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 11 * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is 12 * distributed under a three-clause BSD-style license, which can be found at 13 * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>. This class was 14 * originally part of the DSOL project, see <a href="https://simulation.tudelft.nl/dsol/manual" target="_blank"> 15 * https://simulation.tudelft.nl/dsol/manual</a>. 16 * </p> 17 * @author <a href="https://www.linkedin.com/in/peterhmjacobs">Peter Jacobs </a> 18 * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a> 19 */ 20 public interface RemoteEventProducerInterface extends Remote, EventProducerInterface 21 { 22 // Nothing here 23 }