package org.opentrafficsim.road.gtu.lane.tactical; /** * Interface for tactical planners that can report their blocking status. *

* Copyright (c) 2013-2021 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 7 sep. 2018
* @author Alexander Verbraeck * @author Peter Knoppers * @author Wouter Schakel */ public interface Blockable { /** * Returns whether the GTU is blocking conflicts. * @return boolean; whether the GTU is blocking conflicts */ boolean isBlocking(); }