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 classCollectionTargetEventIt is able to inform all elements within a collection about an event.classEventGroupA special implementation of the SimEvent familiy.classSingleTargetEventThe simpler implementation of SimEvent class.classSystemEventSystem 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 EventGroupEventGroup. addEvent(Event newEvent)Add an event to the list.intEvent. compareTo(Event e)Determines the natural ordering of events.voidEventGroup. removeEvent(Event event)Remove the given event from the list.EventQueueEventQueue. schedule(Event event, double atTime)Deprecated.EventQueueEventQueue. schedule(Event event, double atTime, double timeBetweenEvents)Deprecated.EventQueueEventQueue. scheduleOnce(Event event, double atTime, int withOrdering)Schedule a generic event to occur at a given time.EventQueueEventQueue. scheduleRepeat(Event event, double atTime, int withOrdering, double timeBetweenEvents)Schedule a generic looped event at a given time and ordering.voidEventQueue. unschedule(Event event)Remove from event queue the given event.
-