AnyLogic
Expand
Font size
All Implemented Interfaces:
com.anylogic.engine.internal.Child, Serializable

public class TransitionTimeout
extends Transition
Statechart transition with trigger of type timeout. Is executed with the timeout specified (counted from the moment the statechart came to the transition's source state). If the guard appears to be false when the transition is about to execute, it is not taken and becomes inactive.
Memory: sizeof(Transition) = 22 bytes
Author:
AnyLogic North America, LLC https://anylogic.com
See Also:
Serialized Form

Constructor Summary

ConstructorDescription
TransitionTimeout(Agent ao)
Constructs the transition object with Timeout trigger.

Method Summary

Modifier and TypeMethodDescription
voidcancel()
Should be called when this transition becomes deactivated e.g.
StringgetName()
Returns the name of the timeout transition as specified by the user.
voidstart()
Should be called when the statechart enters to the transition's source state.

Methods inherited from class com.anylogic.engine.Transition

isLoggingToDB, restoreOwner

Methods inherited from class com.anylogic.engine.EventOriginator

getActiveObject, getAgent, getFullName, getRest, getRest, isActive, isCurrent, onDestroy, toString

Methods inherited from class java.lang.Object

equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Details

TransitionTimeout

public TransitionTimeout(Agent ao)
Constructs the transition object with Timeout trigger. Does not activate it.
Parameters:
ao - agent where this transition belongs to

Method Details

getName

public String getName()
Returns the name of the timeout transition as specified by the user.
Specified by:
getName in class EventOriginator
Returns:
The name of the transition

start

@AnyLogicInternalCodegenAPI
public void start()
Should be called when the statechart enters to the transition's source state. Schedules event according to the timeout.

cancel

@AnyLogicInternalCodegenAPI
public void cancel()
Should be called when this transition becomes deactivated e.g. as a result of alternative transition being taken. Removes this transition from the statechart active list.
Specified by:
cancel in class Transition