Uses of Class
microsim.event.Event
-
Packages that use Event Package Description microsim.event -
-
Uses of Event in microsim.event
Subclasses of Event in microsim.event Modifier and Type Class Description class
CollectionTargetEvent
It is able to inform all elements within a collection about an event.class
EventGroup
A special implementation of the SimEvent familiy.class
SingleTargetEvent
The simpler implementation of SimEvent class.class
SystemEvent
System events are directly processed by the simulation engine.Methods in microsim.event that return Event Modifier and Type Method Description Event[]
EventGroup. eventsToArray()
Return an sorted array of the added events.Event[]
EventQueue. getEventArray()
Return event queue as Event array.Methods in microsim.event that return types with arguments of type Event Modifier and Type Method Description java.util.List<Event>
EventGroup. getActions()
Methods in microsim.event with parameters of type Event Modifier and Type Method Description EventGroup
EventGroup. addEvent(Event newEvent)
Add an event to the list.int
Event. compareTo(Event e)
Determines the natural ordering of events.void
EventGroup. removeEvent(Event event)
Remove the given event from the list.EventQueue
EventQueue. schedule(Event event, double atTime)
Deprecated.EventQueue
EventQueue. schedule(Event event, double atTime, double timeBetweenEvents)
Deprecated.EventQueue
EventQueue. scheduleOnce(Event event, double atTime, int withOrdering)
Schedule a generic event to occur at a given time.EventQueue
EventQueue. scheduleRepeat(Event event, double atTime, int withOrdering, double timeBetweenEvents)
Schedule a generic looped event at a given time and ordering.void
EventQueue. unschedule(Event event)
Remove from event queue the given event.
-