Uses of Class
com.amalgamasimulation.engine.Event
Packages that use Event
-
Uses of Event in com.amalgamasimulation.engine
Subclasses of Event in com.amalgamasimulation.engineModifier and TypeClassDescriptionclassClass representing an event that just stops theEngine, i.e.classRepresents an event that remembers stack trace of the point in code from where it was scheduled.Methods in com.amalgamasimulation.engine that return EventModifier and TypeMethodDescriptionIf this engine is running, executes the action at current simulation time with the specified sequence.If this engine is running, executes the action at current simulation time with maximum priority.Engine.scheduleAbsolute(double absoluteTime, int sequence, Runnable runnable) Schedules an event for execution at the specified absolute time with the specified priorityEngine.scheduleAbsolute(double absoluteTime, Runnable runnable) Schedules an event for execution at the specified absolute time with the priority equal to 0Engine.scheduleRelative(double timeout, int sequence, Runnable runnable) Schedules an event for execution in the specified timeout from the current simulation time with the specified priority.Engine.scheduleRelative(double timeout, Runnable runnable) Schedules an event for execution in the specified timeout from the current simulation time with the priority equal to 0.Engine.scheduleStop(double absoluteTime, int sequence, String description) Schedules a stoppage of this engine at the specified absolute time with the specified priorityEngine.scheduleStop(double absoluteTime, String description) Schedules a stoppage of this engine at the specified absolute time with the priority equal to 0Methods in com.amalgamasimulation.engine that return types with arguments of type Event